惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Security @ Cisco Blogs
罗磊的独立博客
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
美团技术团队
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
博客园 - Franky
G
Google Developers Blog
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
腾讯CDC
S
SegmentFault 最新的问题
Recent Announcements
Recent Announcements
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
L
LangChain Blog
Vercel News
Vercel News
Forbes - Security
Forbes - Security
PCI Perspectives
PCI Perspectives
N
News | PayPal Newsroom
S
Security Affairs
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
博客园 - 司徒正美
J
Java Code Geeks
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Hacker News: Ask HN
Hacker News: Ask HN
Schneier on Security
Schneier on Security
A
About on SuperTechFans
Attack and Defense Labs
Attack and Defense Labs
Google Online Security Blog
Google Online Security Blog
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Cloudbric
Cloudbric
B
Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
P
Proofpoint News Feed
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
N
News and Events Feed by Topic

博客园 - wishma

SOAR平台初探(一) Logstash和Flume-NG Syslog接收小测试 Elasticsearch 填坑记 IBM TBSM 业务关联规则配置一例 免费实用微软系统工具集推荐(转) Netcool/OMNIbus Probe脚本编写例子(1) VMware vSphere开发(2)配置VMware vSphere Web Services SDK的开发环境 VMware vSphere开发(1)安装配置VMware vSphere Web Services SDK的运行环境 数字电视业务PSI/SI学习系列(转) SMI-S存储管理协议资料 strus2格式化数字和日期(转) - wishma - 博客园 IPhone数据库操作代码例子 NSDate常用代码范例 64位windows7连接网络共享打印机的问题 IPhone 视图切换的的2种方法 我的D630,安装MAC经历 Eclipse快捷键大全(转贴) CentOS上安装Tomcat,切换JDK的方法 哥不是间谍,哥只是在找信号!(转贴有意思)
(转贴)JIRA安装和破解,随便看看吧
wishma · 2010-04-14 · via 博客园 - wishma


JIRA
是bug 跟踪,问题跟踪和项目管理的一个软件。
下面就说怎么破解和安装最新版的JIRA
(注:依此方法任何版本的JIRA都可以破解)
   1.首先去下载JIRA
   2.创建数据
    3.设置环境变量和修改配置文件
    4.Update Tomcat Libraries
    5.破解JIRA
   6.启动Tomcat安装JIRA
1.下载JIRA
    下载地址:http://www.atlassian.com/software/jira/JIRADownloadCenter.jspa
    先点击show all然后下下载JIRA3.12.3-Enterprise-Standalone(ZIP Archive) 
   
       下载完后将其解压到本地的某个盘子中。 
 2.创建数据库
        打开MySQL命令行,输入下面的命令
        create database jiradb character set utf8; 
 3.设置环境变量和修改配置文件
        设置环境变量
          同时按下window+pause,在弹出的对话框中选择Advance-->Environment Variables
           点击New设置name : CATALINA_HOME
                                value : D:\atlassian-jira-enterprise-3.12.3-standalone
           然后修改PATH将%CATALINA_HOME%\bin;加到PATH的最前面
        修改配置文件
            只需修改两个文件D:\atlassian-jira-enterprise-3.12.3-standalone\conf目录下的server.xml和
            D:\atlassian-jira-enterprise-3.12.3-standalone\atlassian-jira\WEB-INF\classes目录下的entityengine.xml。
    记住将MySQL驱动包copy到D:\atlassian-jira-enterprise-3.12.3-standalone\common\lib目录中。
            server.xml                

  1. <Server port="8005" shutdown="SHUTDOWN">  
  2.   
  3.   <Service name="Catalina">  
  4.   
  5.     <Connector port="8080"  
  6.       maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75"  
  7.       enableLookups="false" redirectPort="8443" acceptCount="100"    
  8.       connectionTimeout="20000" disableUploadTimeout="true" />  
  9.   
  10.     <Engine name="Catalina" defaultHost="localhost">  
  11.       <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">  
  12.   
  13.         <Context path="" docBase="${catalina.home}/atlassian-jira" reloadable="true">  
  14.           <Resource name="jdbc/JiraDS" auth="Container" type="javax.sql.DataSource"  
  15.             username="[enter db username]"  
  16.             password="[enter db password]"  
  17.             driverClassName="com.mysql.jdbc.Driver"  
  18.             url="jdbc:mysql://localhost/jiradb?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=UTF8"  
  19.             />  
  20.   
  21.           <Resource name="UserTransaction" auth="Container" type="javax.transaction.UserTransaction"  
  22.             factory="org.objectweb.jotm.UserTransactionFactory" jotm.timeout="60"/>  
  23.           <Manager className="org.apache.catalina.session.PersistentManager" saveOnRestart="false"/>  
  24.         </Context>  
  25.   
  26.       </Host>  
  27.     </Engine>  
  28.   </Service>  
  29. </Server>  
     

entityengine.xml          

  1.  
  2.  
  3.   
  4.   <datasource name="defaultDS" field-type-name="mysql"  
  5.       helper-class="org.ofbiz.core.entity.GenericHelperDAO"  
  6.     check-on-start="true"  
  7.     use-foreign-keys="false"  
  8.     ...   
  9.       

       ok了。

4.Update Tomcat Libraries
Tomcat does not come with some libraries required to run JIRA. To fix this, download jira-jars-tomcat6.zip(1.5Mb)

http://www.atlassian.com/software/jira/docs/servers/jars/v1/jira-jars-tomcat6.zip, and copy the contained jars to Tomcat's lib/ directory. 

5.破解JIRA
        打开Eclipse新建一个Java Project,将keygen类拷贝到src目录下,keygen.java可以在此下载
       
下载文件atlassian-extras-1.17.jar(附件中)

        然后将D:\atlassian-jira-enterprise-3.12.3-standalone\atlassian-jira\WEB-INF\lib目录下的
        atlassian-extras-1.17.jar引入到工程中。
    根据网友的反馈在这我把我的破解工程上传,下载解压后import到eclipse中就可以使用:

下载文件keygen.java(附件中)

       运行keygen类在console会看到如下结果:
   
        Keygen for JIRA Enterprise Edition.
        created by mydaj[ROR].
        Enter your organization name: zhoule(输入你的名字回车)
        267^^1210662699259^^1210662699259^^zhoule
        Your license key is: (下面就是你的注册码了)
        POrPrAAwTxsdlSsBcpvsVkNscnmVhaSwmnFIEINfocujMVV
        mj2L00vBYhaRFQaIPLmoRKok92KCYhBqG1Nb9ahByCebu>A
        qqRWXMpnormpQQorPmVsOmNppPnQNNmRPvwvTSxWVostUUn
        onmssosvvorvUUnonmssosvvorvUUwelrib 
6. 启动Tomcat你就可以看到安装界面了。
来源 http://toyota2006.javaeye.com/blog/265061