- 浏览: 27046 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
bevis.cn:
请问你有解决吗
IE8下Ext时间控件的问题 -
bevis.cn:
我用的是Ext2.0也是这样耶,不知道怎么弄,后来我把ext3 ...
IE8下Ext时间控件的问题 -
energykey:
写得不错,最近换公司了,需要研究EXT,JS方面以前只停留在直 ...
关于学习和应用Javascript及Ext Js的几点建议 -
damoqiongqiu:
版本有点老了,升一下Ext的版本
Ext2.0 Viewport在IE与FireFox运行问题 -
atian25:
给出完整代码吧.
Ext2.0 Viewport在IE与FireFox运行问题
准备条件:
环境变量: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="sa"
- password=""
- driverClassName="org.hsqldb.jdbcDriver"
- url="jdbc:hsqldb:${catalina.home}/database/jiradb"
- minEvictableIdleTimeMillis="4000"
- timeBetweenEvictionRunsMillis="5000"
- maxActive="20" /-->
- <Resource name="jdbc/JiraDS" auth="Container" type="javax.sql.DataSource"
- username="root"
- password="123456"
- driverClassName="com.mysql.jdbc.Driver"
- url="jdbc:mysql://localhost/jiradb?autoReconnect=true&useUnicode=true&characterEncoding=UTF8"
- 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 "%m %U%q %H" %s %b %D "%{Referer}i" "%{User-Agent}i" "%{jira.request.assession.id}r""/>
- </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>
第六步:目录 E:\jira\atlassian-jira\WEB-INF\classes\entityengine.xml文件中的 <datasource name="defaultDS" field-type-name="hsql"........</datasource> 用以下代码替换:
- <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>
第七步:
启动 E:\jira\bin\startup.bat,
登录:http://localhost:8080/
在页面下部有输入授权码的地方:
复制以下代码:特别注意,复制出来每行前边如果有‘#’,要去掉,每行结束有看不见的空格,要去掉,否则 非法的授权码。
- Description=JIRA\: COMMERCIAL
- CreationDate=2009-10-25
- ContactName=haha@haha.haha
- jira.LicenseEdition=ENTERPRISE
- ContactEMail=haha@haha.haha
- Evaluation=false
- jira.LicenseTypeName=COMMERCIAL
- jira.active=true
- licenseVersion=2
- MaintenanceExpiryDate=2010-10-24
- Organisation=haha
- jira.NumberOfUsers=-1
- ServerID=B6FW-B4KW-J1A3-4DQB
- LicenseID=LID
- LicenseExpiryDate=2010-10-24
- PurchaseDate=2009-10-25
点击 “下一步”,到步骤二
页面如下:
点击:“下一步”,页面如下:
完成,可以登录了。
发表评论
-
Eclipse Hover
2011-03-21 21:07 1254Eclipse validation全部去除 基本上没什么用 ... -
command 4 linux
2011-03-19 17:36 574dos2unix -
Tomcat5与JDK版本
2011-03-18 08:40 1090Servlet/JSP Spec Apache Tom ... -
apache启动报错
2011-03-17 10:16 6461、客户端输入密码后第二次不必输入,即使clear后也是 ... -
去除jsp编译错误
2011-03-17 09:13 1065validation jsp syntax valia ... -
如何加外部jar
2011-03-17 09:06 837http://www.wonderhowto.com/ho ... -
Eclipse 不能引用非webcontent/lib下的jar
2011-03-17 08:34 1450Eclipse3.4存在下列问题 不能引用非webc ... -
Eclipse3.4改变工程
2011-03-16 19:19 721可以改变settings里的东西 project facet ... -
Eclipse启动问题 不能创建虚拟机
2011-03-16 19:00 2840版本:eclipse-jee-helios-win32 自己电 ... -
Eclipse plugin问题
2011-03-16 18:18 637dropin删除 site就可以识别 官网下载的svn ...
相关推荐
**JIRA安装说明书** JIRA是一款由Atlassian公司开发的项目管理和问题跟踪工具,广泛应用于软件开发团队,帮助团队管理任务、缺陷、需求和工作流程。以下是对JIRA安装过程的详细步骤和注意事项的总结: ### 一、...
**Jira安装手册** Jira是一款由Atlassian公司开发的项目管理和问题跟踪工具,广泛应用于软件开发团队。本文将详细讲解Jira的安装过程,并涉及与之相关的源码和插件管理。 首先,安装Jira需要一个兼容的操作系统...
jira安装汉化与mysql的配置说明很全面
《JIRA安装部署指南》是一份详尽的文档,旨在帮助用户顺利地在自己的系统上安装和配置JIRA,这是一个广泛用于项目管理、缺陷跟踪和工作流程优化的工具。以下是对该手册主要内容的深入解析: 一、安装操作 1.1 获取...
4. **服务安装选项**:此步骤询问是否将JIRA安装为Windows服务,这意味着JIRA将在系统启动时自动运行。如果选择此项,则在Windows控制面板的服务列表中可以找到JIRA服务。 5. **完成安装**:点击“Finish”按钮完成...
Jira 安装与配置(个人使用记录) Jira 是一种流行的项目管理工具,由 Atlassian 公司开发。它提供了强大的项目管理功能,包括项目 Tracking、 Bug Tracking、项目Planning 和 Reporting 等。下面是关于 Jira 的...
jira安装,调试,个人安装实验,破解测试
《Jira安装指南》 1. 引言 本指南旨在提供详尽的Jira安装步骤,以便在项目开发过程中实现高效的任务管理、项目计划、需求跟踪和错误追踪。目标受众为所有系统管理员,无论您是初次接触还是有经验的Jira用户,此...
### JIRA插件安装方法详解 #### 一、前言 在现代软件开发与项目管理领域,JIRA作为一款功能强大的工具,不仅能够帮助团队高效地跟踪问题、管理任务,还能通过丰富的插件进一步增强其功能性和灵活性。本文将详细...
### 二、JIRA安装步骤 1. **下载JIRA**: 从Atlassian官方网站获取最新版本的JIRA Software安装包,将其保存到服务器的合适位置。 2. **解压安装包**: 使用`unzip`命令解压缩下载的`.zip`文件。 ```bash unzip ...
7. **数据库连接测试**:在Jira安装前,先使用MySQL客户端工具(如MySQL Workbench)测试连接,确保服务器工作正常。 解决这个问题需要耐心和细致的排查,通过以上步骤,大部分情况下都能找到并解决问题。在处理这...
【JIRA 安装详细教程】 JIRA 是一款由 Atlassian 公司开发的项目管理工具,主要用于缺陷追踪、项目计划、任务分配、需求管理等。由于其强大的功能和友好的用户界面,JIRA 已成为众多企业和团队的首选。在安装 JIRA ...
《Atlassian Agent.jar在JIRA安装中的应用及代码生成详解》 在Atlassian产品家族中,JIRA是一款广泛使用的项目管理与协作工具。为了确保其高效稳定运行,我们需要正确配置和使用各种组件,其中之一就是atlassian-...
【JIRA安装与配置详解】 JIRA是一款由Atlassian公司开发的项目管理和问题跟踪工具,广泛应用于软件开发团队,帮助团队进行任务管理、缺陷追踪以及敏捷开发流程的控制。本篇将详细介绍JIRA的安装过程及其配置步骤。 ...
JIRA是集项目计划、任务分配、需求管理、错误跟踪于一体的商业软件。JIRA创建的问题类型包括New Feature、Bug、Task和Improvement四种,还可以自己定义,所以它也一是过程管理系统。JIRA融合了项目管理、任务管理和...
这个“CentOS JIRA安装手册之新手必备所需附件之Mysql.zip”压缩包可能包含了更详细的步骤、配置文件示例或故障排查指南,确保按照其中的指示进行操作,以确保顺利集成MySQL和JIRA。在安装过程中遇到任何问题,都可...
在本文中,我们将深入探讨如何在CentOS 7操作系统上安装和部署Atlassian的项目管理工具——Jira。Jira是一款强大的问题跟踪器和项目管理软件,广泛应用于软件开发团队,帮助他们进行缺陷追踪、任务管理和敏捷开发...