解压crowd包
unzip atlassian-crowd-1.6.1.zip
做个软链接
ln -s atlassian-crowd-1.6.1 crowd
mkdir –p /root/guanli/data/crowd_home
进入到classes目录,准备修改配置文件crowd-init.properties
创建家目录
cd crowd/crowd-webapp/WEB-INF/classes/
修改crowd.home路径为/root/guanli/data/crowd_home(crowd_home可以你自己定义)
vim crowd-init.properties
cp mysql-connector-java-5.0.8-bin.jar /root/guanli/crowd/apache-tomcat/common/lib/
创建数据库
登录
mysql -u root –p
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 77
Server version: 5.0.41-log Source distribution
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql> create database crowddb character set utf8;
mysql> grant all on confluencedb.* to confluence@”%” identified by “ecneulfnoc”;
mysql> flush privileges;
mysql>quit
执行build.sh(没用吧)
启动start_crowd.sh
访问http://localhost:8095/crowd or http://localhost:8095/crowd/console.
输入Licensing
Database中选择MySql
JDBC URL是jdbc:mysql://localhost/crowddb?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8
更多具体介绍http://confluence.atlassian.com/display/CROWD016/Running+the+Setup+Wizard
0 条评论。