MySQL修改实例密码_mysql多实例修改忘记的root密码

一、操作思路:

1)停止mysql服务

2)启动时添加“--skip-grant-tables”参数

3)修改密码

4)重启mysql服务

二、执行过程

# netstat -tunlp | grep 330*

tcp        0      0 0.0.0.0:3306                0.0.0.0:*         LISTEN      13157/mysqld

tcp        0      0 0.0.0.0:3307                0.0.0.0:*         LISTEN      13874/mysqld

tcp        0      0 0.0.0.0:3308                0.0.0.0:*         LISTEN      12388/mysqld

# 这里假设忘记的是3308实例的root密码

# 先安全关闭另外两个实例

# /data/3306/mysql stop

# /data/3307/mysql stop

# killall mysqld

# mysqld_safe --defaults-file=/data/3308/my.cnf --skip-grant-tables &

[2] 10883

# 161011 22:05:47 mysqld_safe Logging to '/data/3308/mysql_oldboy3308.err'.

161011 22:05:48 mysqld_safe Starting mysqld daemon with databases from /data/3308/data

# mysql -uroot -p -S /data/3308/mysql.sock

Enter password: (这里直接回车就进去了)

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.5.32-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> update mysql.user set password=password("redhat123456") where user='root';

Query OK, 4 rows affected (0.00 sec)

Rows matched: 4  Changed: 4  Warnings: 0

# 更新root账号的密码

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

# 刷新权限

# netstat -tunlp | grep mysql

tcp        0      0 0.0.0.0:3308                0.0.0.0:*                   LISTEN      11620/mysqld

[1]+  Done                    mysqld_safe --default-file=/data/3308/my.cnf --skip-grant-tables --user=mysql

# pkill mysql

# netstat -tunlp | grep mysql

# /data/3308/mysql start

Starting MySQL...

# echo $?

0

三、验证

# mysql -uroot -predhat123456 -S /data/3308/mysql.sock

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.5.32-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值