`

jira 4.0.2 的详细安装+破解

 
阅读更多
准备条件:
环境变量:JAVA_HOME=C:\jdk1.6.0_10(注意jdk版本>=此版本)
第一步:下载jira http://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-enterprise-4.0.2-standalone.zip,解压 to E:/jira
第二步:下载Mysqlhttp://download.mysql.cn/download_file/zip/5.0/mysql-5.0.18-win32.zip 创建数据库:(SID :jiradb,默认用户root,密码:123456)
第三步:下载mysql jdbc驱动,看附件 mysql-connector-java-3.1.14-bin.jar ,复制到 E:\jira\common\lib 目录中
第四步:下载附件jira_crack.rar(108.6 KB),解压出来为:atlassian-jira 文件夹,然后覆盖 E:\jira\atlassian-jira,
第五步:直接复制下面代码覆盖E:\jira\conf\server.xml

<Server port="8005" shutdown="SHUTDOWN">

  <Service name="Catalina">

    <Connector port="8080"
      maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" useBodyEncodingForURI="true"
      enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" />

    <Engine name="Catalina" defaultHost="localhost">
      <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">

        <Context path="" docBase="${catalina.home}/atlassian-jira" reloadable="false">
          <Resource name="jdbc/JiraDS" auth="Container" type="javax.sql.DataSource"
            username="root"
            password="root"
            driverClassName="com.mysql.jdbc.Driver"
            url="jdbc:mysql://localhost/jiradb?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=UTF8"
            minEvictableIdleTimeMillis="4000"
            timeBetweenEvictionRunsMillis="5000"
            maxActive="20" />

          <!-- NOTE: When a database server reboots or their is a network failure all the connections in the
          * connection pool are broken and normally this requires a Application Server reboot. If you include the
          * parameter validationQuery="{QUERY FOR YOUR DB HERE} as show below a new connection is created to replace it.
          * For more information see http://confluence.atlassian.com/display/JIRA/Surviving+Connection+Closures
          *
          * validationQuery="Select 1"
             -->

          <!-- NOTE: If you use a database other than hsqldb:
          * delete the minEvictableIdleTimeMillis and timeBetweenEvictionRunsMillis attributes
          * change the database type in atlassian-jira/WEB-INF/classes/entityengine.xml
          -->

          <Resource name="UserTransaction" auth="Container" type="javax.transaction.UserTransaction"
            factory="org.objectweb.jotm.UserTransactionFactory" jotm.timeout="60"/>
          <Manager pathname=""/>
        </Context>

      </Host>

      <!--
            Enable access logging.

            This should produce access_log.<date> files in the 'logs' directory.

            The output access log lies has the following fields :

            IP Request_Id User Timestamp  "HTTP_Method URL Protocol_Version" HTTP_Status_Code ResponseSize_in_Bytes RequestTime_In_Millis Referer User_Agent ASESSIONID

            eg :

            192.168.3.238 1243466536012x12x1 admin [28/May/2009:09:22:17 +1000] "GET /jira/secure/admin/jira/IndexProgress.jspa?taskId=1 HTTP/1.1" 200 24267 1070 "http://carltondraught.sydney.atlassian.com:8090/jira/secure/admin/jira/IndexAdmin.jspa" "Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.0.10) Gecko/2009042523 Ubuntu/9.04 (jaunty) Firefox/3.0.10" "C2C99B632EE0F41E90F8EF7A201F6A78"

            NOTES:

            The RequestId is a millis_since_epoch plus request number plus number of concurrent users

            The Request time is in milliseconds

            The ASESSIONID is an MD5 hash of the JSESSIONID and hence is safe to publish within logs.  A session cannot be reconstructed from it.

            See http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html for more information on Tomcat Access Log Valves
       -->
      <Valve className="org.apache.catalina.valves.AccessLogValve" resolveHosts="false"
              pattern="%a %{jira.request.id}r %{jira.request.username}r %t &quot;%m %U%q %H&quot; %s %b %D &quot;%{Referer}i&quot; &quot;%{User-Agent}i&quot; &quot;%{jira.request.assession.id}r&quot;"/>

    </Engine>

        <!-- To run JIRA via HTTPS:
              * Uncomment the Connector below
              * Execute:
                  %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
                  $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA  (Unix)
                with a password value of "changeit" for both the certificate and the keystore itself.
              * If you are on JDK1.3 or earlier, download and install JSSE 1.0.2 or later, and put the JAR files into
                "$JAVA_HOME/jre/lib/ext"
              * Restart and visit https://localhost:8443/

              For more info, see http://jakarta.apache.org/tomcat/tomcat-5.5-doc/ssl-howto.html
         -->
        <!--
            <Connector port="8443" maxHttpHeaderSize="8192"
              maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
              enableLookups="false" disableUploadTimeout="true"
              acceptCount="100" scheme="https" secure="true"
              clientAuth="false" sslProtocol="TLS" useBodyEncodingForURI="true"/>
        -->

        <!-- To connect to an external web server (typically Apache) -->
        <!-- Define an AJP 1.3 Connector on port 8009 -->
        <!--
            <Connector port="8009"
              enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
        -->


  </Service>

  <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  <Listener className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>

</Server>
</code>

第六步:目录 E:\jira\atlassian-jira\WEB-INF\classes\entityengine.xml文件中的 <datasource name="defaultDS" field-type-name="hsql"........</datasource> 用以下代码替换:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE entity-config PUBLIC "-//OFBiz//DTD Entity Engine Config//EN" "http://www.ofbiz.org/dtds/entity-config.dtd">
<!--
This file configures the OFBiz Entity Engine which JIRA uses to store persist data in a datasource.

For detailed configuration help see:

   http://www.atlassian.com/software/jira/docs/latest/entityengine.html

Or our server specific setup guides (these take you through the setup process for each server):

   http://www.atlassian.com/software/jira/docs/latest/servers/

Normally, you will only need to edit the 'field-type-name' attribute of the <datasource> tag, near the bottom of this
file.

Less commonly, you may wish to change then JNDI lookup paths for:
 - the Transaction Manager (<transaction-factory> element)
 -  Database connection (<jndi-jdbc> element).

If you not using the 12 preconfigured DBs, you may also need to add your own field type definition
-->
<entity-config>
    <resource-loader name="maincp" class="org.ofbiz.core.config.ClasspathLoader"/>

    <!-- TRANSACTION FACTORY - This configures how JIRA finds the application server's transaction management.
    The default ('java:comp/UserTransaction') is fine except for Tomcat 5.5 ('java:comp/env/UserTransaction'), JBoss and
    Resin.
    - see:
        http://www.atlassian.com/software/jira/docs/latest/entityengine.html#transactionfactory
    -->
    <transaction-factory class="org.ofbiz.core.entity.transaction.JNDIFactory">
      <user-transaction-jndi jndi-server-name="default" jndi-name="java:comp/env/UserTransaction"/>
      <transaction-manager-jndi jndi-server-name="default" jndi-name="java:comp/env/UserTransaction"/>
    </transaction-factory>

    <delegator name="default" entity-model-reader="main" entity-group-reader="main">
        <group-map group-name="default" datasource-name="defaultDS"/>
    </delegator>

    <entity-model-reader name="main">
        <resource loader="maincp" location="entitydefs/entitymodel.xml"/>
    </entity-model-reader>

    <entity-group-reader name="main" loader="maincp" location="entitydefs/entitygroup.xml"/>

    <field-type name="cloudscape" loader="maincp" location="entitydefs/fieldtype-cloudscape.xml"/>
    <field-type name="firebird" loader="maincp" location="entitydefs/fieldtype-firebird.xml"/>
    <field-type name="hsql" loader="maincp" location="entitydefs/fieldtype-hsql18.xml"/>
    <field-type name="mckoidb" loader="maincp" location="entitydefs/fieldtype-mckoidb.xml"/>
    <field-type name="mysql" loader="maincp" location="entitydefs/fieldtype-mysql.xml"/>
    <field-type name="mssql" loader="maincp" location="entitydefs/fieldtype-mssql.xml"/>
    <!--
        This field type is deprecated, and should ONLY be used with Oracle 8i.
        If you are using Oracle 9i or 10g please use Oracle 10g JDBC drivers and the 'oracle10g' field type, which is specified below
    -->
    <field-type name="oracle" loader="maincp" location="entitydefs/fieldtype-oracle.xml"/>
    <!--
        Please use this field type for Oracle 9i and 10g. Please ensure that you are using Oracle 10g JDBC drivers which are compatible with Oracle 9i.
        The 10g JDBC drivers can be downloaded from here: http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    -->
    <field-type name="oracle10g" loader="maincp" location="entitydefs/fieldtype-oracle10g.xml"/>
    <field-type name="postgres" loader="maincp" location="entitydefs/fieldtype-postgres.xml"/>
    <field-type name="postgres72" loader="maincp" location="entitydefs/fieldtype-postgres72.xml"/> <!-- use for postgres 7.2 and above -->
    <field-type name="sapdb" loader="maincp" location="entitydefs/fieldtype-sapdb.xml"/>
    <field-type name="sybase" loader="maincp" location="entitydefs/fieldtype-sybase.xml"/>
    <field-type name="db2" loader="maincp" location="entitydefs/fieldtype-db2.xml"/>
    <!--
        JRA-4202: FrontBase has 'type' and 'position' as reserved words so make the following changes the entitymodel.xml
        <field name="type" type="short-varchar"/> to <field name="type" col-name="TYPE_" type="short-varchar"/>
        <field name="type" type="long-varchar"/> to <field name="type" col-name="TYPE_" type="long-varchar"/>
        <field name="position" type="integer"/> to <field name="position" col-name="POSITION_" type="integer"/>
    -->
    <field-type name="frontbase" loader="maincp" location="entitydefs/fieldtype-frontbase.xml"/>


    <!-- DATASOURCE - You will need to update this tag for your installation.

        1. Update field-type-name attribute to match your database.
           Possible values include: cloudscape, db2, firebird, frontbase, hsql, mckoidb, mysql, mssql, oracle10g, oracle, postgres, postgres72, sapdb, sybase
        2. If using Orion or JBoss you will need to customize the <jndi-jdbc> tag.
           See http://www.atlassian.com/software/jira/docs/latest/servers/
        3. If using Postgres 7.3+ (schema-aware), use:
               field-type-name="postgres72" 
           and:
               schema-name="public"
           in the datasource attribute list below.
        4. If using DB2, add:
             constraint-name-clip-length="15"
           to the datasource attribute list below, and an appropriate schema-name attribute, eg:
             schema-name="DB2INST1"
        5. If not using HSQLDB remove:
             schema-name="PUBLIC"

        PLEASE DO NOT CHANGE the datasource name from 
        defaultDS unless instructed to by Atlassian Support.

        PLEASE DO NOT set the use-foreign-key* values to "true" as JIRA does not currently support this.
     -->
    <datasource name="defaultDS" field-type-name="mysql"
      helper-class="org.ofbiz.core.entity.GenericHelperDAO"
      check-on-start="true"
      use-foreign-keys="false"
      use-foreign-key-indices="false"
      check-fks-on-start="false"
      check-fk-indices-on-start="false"
      add-missing-on-start="true"
      check-indices-on-start="true">
        <jndi-jdbc jndi-server-name="default" jndi-name="java:comp/env/jdbc/JiraDS"/>
<!-- Orion format: <jndi-jdbc jndi-server-name="default" jndi-name="jdbc/JiraDS"/> -->
<!-- JBoss format: <jndi-jdbc jndi-server-name="default" jndi-name="java:/JiraDS"/> -->
<!-- Weblogic format: <jndi-jdbc jndi-server-name="default" jndi-name="JiraDS"/> -->
    </datasource>
</entity-config>


第七步:
       启动 E:\jira\bin\startup.bat,
      登录:http://localhost:8080/
      在页面下部有输入授权码的地方:
       复制以下代码:特别注意,复制出来每行前边如果有‘#’,要去掉,每行结束有看不见的空格,要去掉,否则 非法的授权码。
Java代码

    Description=JIRA\: COMMERCIAL  
    CreationDate=2011-11-08  
    ContactName=renwg@rockontrol.com
    jira.LicenseEdition=ENTERPRISE  
    ContactEMail=renwg@rockontrol.com
    Evaluation=false  
    jira.LicenseTypeName=COMMERCIAL  
    jira.active=true  
    licenseVersion=2  
    MaintenanceExpiryDate=2012-11-08
    Organisation=haha  
    jira.NumberOfUsers=-1  
    ServerID=B6FW-B4KW-J1A3-4DQB  
    LicenseID=LID  
    LicenseExpiryDate=2012-11-08
    PurchaseDate=2011-11-08
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    jira confluence 语言包+破解包

    jira_6.0.* confluence 5.0.* 语言包+破解包 请低调使用。毕竟没有花钱的东西。里面如何使用都有详细的readme。

    jira6 破解+汉化+安装手册

    jira6 破解+汉化+安装手册. 用于项目管理。

    Jira6.0.2破解教程+汉化包

    Jira6.0.2破解安装文件+教程+汉化包 解压后,里面有详细资料,感谢以前提供帮助的好人心

    基于React17+React Hooks+TS4开发的仿Jira项目+源码+开发文档(毕业设计&课程设计&项目开发)

    基于React17+React Hooks+TS4开发的仿Jira项目+源码+开发文档,适合毕业设计、课程设计、项目开发。项目源码已经过严格测试,可以放心参考并在此基础上延申使用~ 项目简介: 可用脚本 在项目目录中,可以运行: 在...

    CentOS系统安装JDK+Crowd+JIRA+Confluence教程

    JDK+Crowd+JIRA+Confluence安装教程 JDK+Crowd+JIRA+Confluence安装教程

    jira 4.0 汉化包

    在下载并解压“jira4汉化包”之后,通常会有一个详细的安装指南,指导用户如何将汉化文件整合到Jira系统中。这可能涉及到Jira的服务器配置,如停服、替换原有语言文件、重启服务等步骤。在进行此类操作时,确保备份...

    CentOS系统安装JDK+Crowd+JIRA+Confluence教程1

    CentOS系统安装JDK+Crowd+JIRA+Confluence教程 在本篇教程中,我们将详细介绍如何在 CentOS 系统中安装 JDK、Crowd、JIRA 和 Confluence。这些工具都是 Atlassian 家族中的重要组件,广泛应用于软件开发、项目管理...

    jira插件安装方法

    本文将详细介绍如何在JIRA中安装插件,特别是针对“Tempo Timesheets”这款时间跟踪插件的具体步骤,帮助读者更好地理解和掌握JIRA插件安装的过程。 #### 二、理解JIRA插件的重要性 JIRA本身已经具备了非常全面的...

    atlassian-jira-enterprise-4.0.2-standalone

    《Atlassian JIRA Enterprise 4.0.2:缺陷跟踪与项目管理的卓越工具》 Atlassian JIRA,作为一款全球广泛使用的缺陷跟踪和项目管理软件,是许多企业和团队进行高效协作的重要工具。JIRA Enterprise 4.0.2 版本更是...

    JIRA4.1/4.0安装破解

    JIRA4.1/4.0安装破解 1.首先去下载JIRA 2.创建数据 3.设置环境变量和修改配置文件 4.启动Tomcat安装JIRA 5.破解JIRA

    JIRA 4.1.2 破解+汉化

    JIRA 破解+汉化包。支持4.1.2版本(atlassian-jira-enterprise-4.1.2-windows-installer.exe)。 备注:安装过可用,但是汉化的不是很全-_-',网上其他地方可能也有下载。

    JIRA6的安装与破解

    NULL 博文链接:https://guanning.iteye.com/blog/2216055

    JIRA 使用+安装部署

    **JIRA 使用与安装部署详解** JIRA,作为Atlassian公司的一款旗舰级产品,是一款强大的项目管理和问题跟踪工具,尤其适用于软件开发团队。本指南将深入讲解JIRA的使用、安装以及工作流配置,帮助您更好地理解和应用...

    Jira 6.X破解license 格式(包括Jira,敏捷,插件license)

    Jira 6.X破解license 格式(包括Jira,敏捷,插件license)

    Jira&Confluence安装配置说明

    下面将对Jira的安装配置进行详细的讲解。 一、JDK的安装 JDK的安装是Jira安装的前提条件。首先,需要下载JDK5.0,并安装到D:\JDK1.5目录下。安装过程中,需要注意的是双击安装时,先安装JDK,然后将安装文件夹改为...

    Crowd单点登录-管理jira与confluence

    crowd2.7下载:http://downloads.atlassian.com/software/crowd/downloads/atlassian-crowd-2.7.0.zip crowd安装+破解+集成jira+集成confluence

    jira详细的安装教程,一看就会

    【JIRA 安装详细教程】 JIRA 是一款由 Atlassian 公司开发的项目管理工具,主要用于缺陷追踪、项目计划、任务分配、需求管理等。由于其强大的功能和友好的用户界面,JIRA 已成为众多企业和团队的首选。在安装 JIRA ...

    JIRA 6.1.5安装配置 汉化 详细描述

    本教程将详细介绍如何在您的系统上安装、配置JIRA 6.1.5版本,并进行汉化,以及如何与MySQL数据库建立连接。 **一、JIRA 6.1.5的安装** 1. **下载JIRA**:首先,你需要从Atlassian官方网站获取JIRA 6.1.5的安装包...

    最新jira7安装实战笔记

    ### 最新Jira 7安装实战笔记 #### 一、安装JDK 为了确保Jira能够在Linux环境...这些步骤不仅覆盖了软件的基本安装过程,还提供了详细的配置指导,确保了Jira能够稳定运行。希望这份实战笔记对您的项目管理有所帮助。

    Jira+mysql5.7解决包.rar

    Jira+Mysql5.7会报引擎问题,因为JIRA匹配到5.6版本,解决方案是更新链接客户端, 使用方法:解压后把文件放入/opt/atlassian/jira/atlassian-jira/WEB-INF/lib/目录

Global site tag (gtag.js) - Google Analytics