navicat远程连接linux 禅道mysql设置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
背景:在linux安装了禅道(开源版9.1),使用navicat连接该mysql数据库一直提示10061错误
1.修改mysql数据库user表root用户的host值为%
- /opt/zentao/bin/mysql -uroot -p123456
- use mysql;
- update user set host='%' where user='root';
- select host,user from user;
2.修改权限方法
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
- flush privileges;
3.修改my.cnf文件
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)