Jira解决数据库排序不符合要求和Health Check: Thread Limit的方法

How to Fix the Collation and Character Set of a MySQL Database

按照官方的解决方案依次修改数据库 ,表, 列的排序规则.太麻烦.

如果你的数据库还没有任何内容,可以试试我这个办法.先直接Drop掉Jira的数据库,按新的规则建好数据库(要修改Mysql的my.cnf)

再删掉 /var/atlassian/application-data/jira 目录下的dbconfig.xml.
重新来过就好了.

解决

Health Check: Thread Limit

/opt/atlassian/jira/bin/目录下的SetEnv.sh

增加如下内容.问题解决

jira             soft    nofile          4096
jira             hard    nofile          8192
jira             soft    nproc           4096
jira             hard    nproc           8192
 

转载于:https://my.oschina.net/wynwyy/blog/3101712

你可能感兴趣的:(jira,数据库)