一、软件介绍
AtlassianConfluence(简称Confluence)是一个专业的wiki程序。它是一个知识管理的工具,通过它可以实现团队成员之间的协作和知识共享。Confluence不是一个开源软件,非商业用途可以免费使用。
Confluence使用简单,但它强大的编辑和站点管理特征能够帮助团队成员之间共享信息,文档协作,集体讨论。 目前,Confluence被用于广泛地用于项目团队,开发团队,市场销售团队。
部署起来一个月,也写了不少内容到自家wiki上了。
二、版本介绍
系统:CentOS6.4_x64
Confluence:confluence-5.1.2~5.4.4(注:必须使用此范围内版本)
Mysql:mysql-5.5.33
Mysql驱动:mysql-connector-java-5.1.32-bin
三、下载地址
atlassian-confluence-5.4.2.tar.gz
https://drive.google.com/open?id=0BzRzmlOvwwLPdlhIOFhwZl9DYWM
atlassian-confluence-5.10.7-x64.bin
https://drive.google.com/open?id=0BzRzmlOvwwLPMElVVjQzTVpEbDA
破解包
https://drive.google.com/open?id=0BzRzmlOvwwLPTHRhcXJ2SWVoU2s
如果不能FQ:
http://www.unlimax.com/-->进入下载接口(这里访问速度会跳转的快一些)
https://www.atlassian.com/software/confluence/download
四、安装破解思路
1、解压Confluence
[root@Leon_Python_103 local]#chmod +x atlassian-confluence-5.1.2-x64.bin [root@Leon_Python_103local]# ./atlassian-confluence-5.1.2-x64.bin
等待安装完毕即可,如果未能启动请查看端口是否被占用netstat -ntp |grep [port],或者到安装目录[confluence path]/bin/start-confluence.sh -fg
2、破解及安装应用
(1)、首先打开网页,查看ServerID(http://192.168.1.105:8090)
(2)、停止应用服务
[root@Leon_Python_103bin]# /etc/init.d/confluence stop
(3)、破解应用
[root@Leon_Python_103 zhao]# unzip confluence5.1-crack.zip(解压破解包) [root@Leon_Python_103zhao]# cd confluence5.1-crack [root@Leon_Python_103confluence5.1-crack]# cp /usr/local/confluence/confluence/WEB-INF/lib/atlassian-extras-2.4.jar. (将应用原有的授权程序复制到当前文件内进行破译) [root@Leon_Python_103confluence5.1-crack]# cd iNViSiBLE/ [root@Leon_Python_103iNViSiBLE]# chmod +x keygen.sh [root@Leon_Python_103iNViSiBLE]# ./keygen.sh #此破解过程可以在本地完成,破解完毕后必须将本地atlassian-extras-2.4.jar复制到服务器上,对应下图提到位置
(4)、生产key完成,将key记录一下关闭改破解脚本程序
[root@Leon_Python_103iNViSiBLE]# cd .. (返回上级目录) [root@Leon_Python_103confluence5.1-crack]# cp atlassian-extras-2.4.jar/usr/local/confluence/confluence/WEB-INF/lib/ 将文件拷回目录,启动服务
(5)、启动应用程序服务
[root@Leon_Python_103~]# /etc/init.d/confluence start
(6)、输入Key进行激活服务
(7)、选择安装应用的方式
(8)、选择应用程序使用的数据库
(9)、这里使用自定义mysql数据库时,肯定像jira和fisheye一样少不了驱动器,因为Crofluence默认也是没有驱动器的
[root@Leon_Python_103 ~]# cpmysql-connector-java-5.1.32-bin.jar /usr/local/confluence/confluence/WEB-INF/lib/
(10)、创建数据库
mysql> CREATE DATABASE confluence CHARACTER SET utf8 COLLATE utf8_bin;
mysql> GRANT ALL PRIVILEGES ON confluence.* TO 'confluence'@'localhost' IDENTIFIED BY 'confluence'; #confluence为数据库用户密码
mysql> GRANT ALL PRIVILEGES ON confluence.* TO 'confluence'@'192.168.1.105' IDENTIFIED BY 'confluence'; #confluence为数据库用户密码
mysql> FLUSHPRIVILEGES;
(11)、重启应用服务
[root@Leon_Python_103bin]# /etc/init.d/confluence restart
(12)、连接数据库
(13)、后面的设置主要加载内容(我选择Empty Site)、用户配置、设置Confluence 管理员密码信息等
Confluence安装完成
3、下面进行汉化:(下载)
[root@Leon_Python_103 ~]#cp Confluence-Language-STD-CN.jar /usr/local/confluence/confluence/WEB-INF/lib [root@Leon_Python_103 bin]# /etc/init.d/confluence restart
4、汉化后乱码问题解决
需要在客户端设置连接数据库字符集
vim /[confluence-data path]/confluence.cfg.xml
<property name="hibernate.connection.url">jdbc:mysql://localhost/confluence?sessionVariables=storage_engine%3DInnoDB&useUnicode=true&characterEncoding=utf8</property> 添加内容:&useUnicode=true&characterEncoding=utf8