免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1604 | 回复: 0
打印 上一主题 下一主题

修改mysql的root密码 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-11 23:11 |只看该作者 |倒序浏览
修改mysql的root密码

1,关闭mysql服务
[root@localhost ~]# service mysql stop
Shutting down MySQL..                                      [  OK  ]
[root@localhost ~]#

2,跳过授权表启动mysql,关闭网络监听,让其后台运行或者开个新终端。
[root@localhost ~]# mysqld_safe --skip-grant-tables --skip-networking
090411 15:57:20 mysqld_safe Logging to '/var/lib/mysql/localhost.localdomain.err'.
090411 15:57:20 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
[1]+  Stopped                 mysqld_safe --skip-grant-tables --skip-networking
[root@localhost ~]# bg
[1]+ mysqld_safe --skip-grant-tables --skip-networking &
3,链接mysql服务器
[root@localhost ~]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.32-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>

4,使用mysql数据库
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
mysql>

5,重设密码
mysql> update user set password=password('123') where user='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0
mysql>

6,重启mysql服务
[root@localhost ~]# service mysql restart
Shutting down MySQL..090411 15:59:50 mysqld_safe mysqld from pid file /var/lib/mysql/localhost.localdomain.pid ended
                                                           [  OK  ]
Starting MySQL.                                            [  OK  ]
[1]+  Done                    mysqld_safe --skip-grant-tables --skip-networking
[root@localhost ~]#

7,再次登陆成功
[root@localhost ~]# mysql -uroot -p123
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.32-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/94265/showart_1898215.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP