时间:2021-07-01 10:21:17 帮助过:10人阅读
关于 #service mysqld stop 命令,可参考 CENTOS 6.5 平台离线编译安装 Mysql5.6.22。
二、启动MySQL_safe,如此以来便可不用密码登录MySQL
# mysqld_safe --skip-grant-tables & 输出类似 Starting mysqld daemon with databases from /var/lib/mysql mysqld_safe[6025]: started
三、登录MYSQL
# mysql -u root 输出 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version: 4.1.15-Debian_1-log Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the buffer. mysql>
四、设置新密码
mysql> use mysql; mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User=‘root‘; mysql> flush privileges; mysql> quit
五、停止MySQL
# /etc/init.d/mysql stop 输出 Stopping MySQL database server: mysqld STOPPING server from pid file /var/run/mysqld/mysqld.pid mysqld_safe[6186]: ended [1]+ Done mysqld_safe --skip-grant-tables
六、启动MySQL并测试新密码是否正确
# /etc/init.d/mysql start
# mysql -u root -p
参考地址
http://www.cyberciti.biz/tips/recover-mysql-root-password.html
Centos 下 mysql root 密码重置
标签: