Home >Database >Mysql Tutorial >ubuntu mysql远程无法连接有关问题

ubuntu mysql远程无法连接有关问题

WBOY
WBOYOriginal
2016-06-07 16:14:51940browse

ubuntu mysql远程无法连接问题 ubuntu默认安装好mysql后,远程无法连接,出现10061错误 ? 修改/etc/mysql/my.cf 中:bind-address = 0.0.0.0 (个人理解这个配置可以控制哪些ip可以访问mysql) ? 后续继续客户端连接出现1130 ? 这是因为你没有把帐号分配给远程客

ubuntu mysql远程无法连接问题

ubuntu默认安装好mysql后,远程无法连接,出现10061错误

?

修改/etc/mysql/my.cf 中:bind-address = 0.0.0.0 (个人理解这个配置可以控制哪些ip可以访问mysql)

?

后续继续客户端连接出现1130

?

这是因为你没有把帐号分配给远程客户端

grant all PRIVILEGES on *.* to root@’%’ identified by 'longhzwf'

?

在这里有可能出现Access denied for user 'root'@'localhost' (using password: NO))

原因是没有用sudo 登录mysql

?

进入mysql 执行sudo -u root -p

输入密码longhzwf

?

Ok了!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn