Centos系统mysql 忘记root用户的密码
Centos系统mysql 忘记root用户的密码:
第一步:(停掉正在运行的mysql)
[root@maomao ~]# service mysqld stop
Stopping MySQL:
[ OK ]
[root@maomao ~]# service mysqld stop
Stopping MySQL:
第二步:使用
“--skip-grant-tables”参数重新启动mysql
[root@mcy400 ~]# mysqld_safe --skip-grant-tables
[root@mcy400 ~]# mysqld_safe --skip-grant-tables
[root@cy400
第三步:用帐号登录mysql
[root@cy400~]#
mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.77 Source distribution
[root@cy400
Welcome to the MySQL monitor.
Your MySQL connection id is 1
Server version: 5.0.77 Source distribution
Type
'help;' or '\h' for help. Type '\c' to clear the buffer.
第四步:改变用户数据库
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database
changed
第五步:修改密码,下面()内的root123为新密码
mysql> update user set password=password('root123') where user='root';
mysql> update user set password=password('root123') where user='root';
Query OK, 3 rows
affected (0.00 sec)
Rows matched: 3
Changed: 3 Warnings: 0
第六步:刷新权限表
mysql> flush previleges;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'previleges' at line 1
mysql> flush previleges;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'previleges' at line 1
第七步:退出mysql
mysql> quit
Bye
mysql> quit
Bye
第八步:对mysql进行重启
[root@cy400~]#
service mysqld restart;
[root@cy400
Stopping
MySQL:
[ OK ]
Starting MySQL:
[ OK ]
Starting MySQL:
第九步:用更改过的密码重新登录即可。
[root@cy400 ~]# mysql -u root -p
Enter password: admin123
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.0.77 Source distribution
[root@cy400 ~]# mysql -u root -p
Enter password: admin123
Welcome to the MySQL monitor.
Your MySQL connection id is 2
Server version: 5.0.77 Source distribution
Type
'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
quit
Bye
Bye
[root@cy400 ~]#
加入如下自动启动命令
标签: MySql
天气
分类
标签
存档
- 2024年3月(1)
- 2024年2月(1)
- 2023年8月(1)
- 2023年7月(1)
- 2023年5月(1)
- 2022年9月(1)
- 2022年8月(1)
- 2022年1月(2)
- 2021年10月(1)
- 2021年7月(1)
- 2020年9月(1)
- 2020年8月(1)
- 2020年7月(1)
- 2020年6月(2)
- 2020年5月(1)
- 2019年10月(1)
- 2019年9月(2)
- 2019年7月(1)
- 2019年1月(4)
- 2018年12月(1)
- 2018年11月(1)
- 2018年10月(5)
- 2018年8月(2)
- 2018年7月(5)
- 2018年6月(2)
- 2018年4月(1)
- 2018年2月(1)
- 2017年12月(2)
- 2017年11月(1)
- 2017年10月(4)
- 2017年9月(3)
- 2017年8月(2)
- 2017年5月(2)
- 2017年4月(7)
- 2017年2月(1)
- 2016年12月(1)
- 2016年11月(2)
- 2016年10月(3)
- 2016年6月(2)
- 2016年3月(1)
- 2016年1月(2)
- 2015年12月(3)
- 2015年11月(3)
- 2015年10月(1)
- 2015年9月(1)
- 2015年8月(2)
- 2015年7月(2)
- 2015年5月(1)
- 2015年4月(1)
- 2015年2月(1)
- 2015年1月(1)
- 2014年12月(4)
- 2014年11月(1)
- 2014年10月(1)
- 2014年8月(4)
- 2014年7月(2)
- 2014年6月(1)
- 2014年2月(2)
- 2014年1月(2)
- 2013年12月(26)
- 2013年10月(2)