ubuntu下mysql连接失败怎么办 ubuntu启动mysql失败

主机教程 建站分享 2年前 (2022-10-17) 299次浏览

文章摘要:ubuntu下mysql连接失败怎么办 ubuntu启动mysql失败

ubuntu中连接mysql失败的解决方法 原因:Ubuntu在mysql的配置文件中默认绑定了本机ip,需要 […]

ubuntu中连接mysql失败的解决方法

原因:Ubuntu在mysql的配置文件中默认绑定了本机ip,需要修改配置文件并赋予权限。

1.在ubuntu命令行中,打开my.cnf配置文件;

/etc/mysql/my.cnf

2.my.cnf配置文件打开后,在文件进行以下修改:

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

bind-address = 127.0.0.1

3.my.cnf配置文件修改好后,使用service命令启动MySQL;

service mysql start

4.最后,MySQL启动后,使用root用户即可连接到MySQL;

mysql -u root -p


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:ubuntu下mysql连接失败怎么办 ubuntu启动mysql失败
文章链接:http://www.7966.org/post/16255.html
转载请注明出处

喜欢 (0)