最近在研究Django和mysql的交互,在本地安装了一个mysql,结果安装完兴致勃勃想登录,结果却失败了。这里记录下问题解决的过程。
我是T型人小付,一位坚持终身学习的互联网从业者。喜欢我的博客欢迎在csdn上关注我,如果有问题欢迎在底下的评论区交流,谢谢。
报错现象
刚安装完mysql5.7,已经成功启动mysqld服务,访问mysql报错如下
[fuhx@testmachine Downloads]$ mysql -uroot
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
看样子似乎是权限有问题,但是我明明记得mysql刚安装完是没有密码的啊,非常奇怪
解决问题
找到mysql的配置文件/etc/my.cnf
在其中的[mysqld]
部分加入skip-grant-tables
,如下
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
[mysqld]
#
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# i