如何从MySQL命令行客户端将MySQL root用户的密码更改为null-表示无密码或''- 更改密码?
root
null
''
您可以通过以下五个简单步骤来恢复MySQL数据库服务器密码。
步骤1 :停止MySQL服务器进程。
步骤#2 :使用–skip-grant-tables选项启动MySQL(mysqld)服务器/守护进程,以使其不提示输入密码。
步骤#3 :以root用户身份连接到mysql服务器。
步骤4 :设置新的mysql根帐户密码,即重置mysql密码。
步骤5 :退出并重新启动MySQL服务器。
这是您需要为每个步骤键入的命令(以root用户身份登录):
步骤#1 :停止mysql服务
# /etc/init.d/mysql stop
输出:
Stopping MySQL database server: mysqld.
步骤2 :启动没有密码的MySQL服务器:
# mysqld_safe --skip-grant-tables &
[1] 5988 Starting mysqld daemon with databases from /var/lib/mysql mysqld_safe[6025]: started
步骤#3 :使用mysql客户端连接到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>
步骤#4 :设置新的MySQL root用户密码
mysql> use mysql; mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root'; mysql> flush privileges; mysql> quit
步骤#5 :停止MySQL服务器:
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
步骤#6 :启动MySQL服务器并进行测试
# /etc/init.d/mysql start # mysql ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) # mysql -u root -p
资料来源:http : //www.cyberciti.biz/tips/recover-mysql-root- password.html