设置TeamCity时MySQL数据库连接有问题吗?

时间:2016-01-28 17:33:34

标签: mysql teamcity

  

意外异常MySQLSyntaxErrorException:执行时出现SQL错误:从数据源获取连接   SQL异常:未知数据库'teamcitydb'

当我在firefox中打开TeamCity服务器的Web UI时出现此错误,我不确定为什么它无法连接到此数据库。我按照安装过程中的所有步骤进行操作。

任何帮助或指导都将不胜感激!

1 个答案:

答案 0 :(得分:0)

似乎您没有在MySQL中正确创建数据库。

根据latest manual,连接到MySQL后应在以下命令中运行:

create database teamcitydb collate utf8_bin;
create user <user-name> identified by '<password>';
grant all privileges on <database-name>.* to <user-name>;
grant process on *.* to <user-name>;