前言
昨天一天都是启动mysql时提示:The server quit without updating PID file
,今天重装了mysql之后还是同样报错,然后恢复了一下/usr/my.cnf
突然就可以启动了。(明明昨天/usr/my.cnf就是默认的,有个解决方法说改这个文件才改的)
然后现在就到没有设置root密码的问题了,搜了几个方法都不行,直到看到下面这个方法一才行。
解决方法一:
# /etc/init.d/mysql stop # mysqld_safe --user=mysql --skip-grant-tables --skip-networking & # mysql -u root mysql mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root'; mysql> FLUSH PRIVILEGES; mysql> quit # /etc/init.d/mysql restart # mysql -uroot -p Enter password: <输入新设的密码newpassword> mysql>
解决方法二:
直接使用/etc/mysql/debian.cnf
文件中[client]
节提供的用户名和密码:
# mysql -udebian-sys-maint -p Enter password: <输入[client]节的密码> mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root'; mysql> FLUSH PRIVILEGES; mysql> quit # mysql -uroot -p Enter password: <输入新设的密码newpassword> mysql>
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能有所帮助,如果有疑问大家可以留言交流。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索mysql
, centos
, root
, 安装mysql
忘记root
centos mysql忘记密码、centos7忘记mysql密码、centos忘记root密码、centos7忘记root密码、centos6忘记root密码,以便于您获取更多的相关知识。
时间: 2024-11-01 13:42:08