confluence安装

一、数据库

1、确保mysql默认引擎为InnoDB

使用mysql5.7版本。mysql-5.5.5开始,InnoDB作为默认存储引擎InnoDB作为支持事务的存储引擎

confluence安装_第1张图片

2、

[mysqld]中修改连接数:

# vim /etc/my.cnf

增加

max_connections = 2000

二、创建数据库

配置界面中:CREATE DATABASE confluence DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

三、数据库连接

jdbc:mysql://localhost:3306/confluence?autoReconnect=true&characterEncoding=utf8&useUnicode=true


参考链接:

http://www.myjishu.com/?p=472 

https://confluence.atlassian.com/display/STASHKB/Cannot+connect+Stash+to+MySQL+database


其他备注:

解决host ... is not allowed to connect to this MySql server,MySQL

1.改表法

可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"

mysql -u root -p

mysql>use mysql;

mysql>update user set host = '%' where user = 'root';

mysql>select host, user from user;

mysql>FLUSH PRIVILEGES;


你可能感兴趣的:(confluence安装)