成都创新互联网站制作重庆分公司

MySQL密码忘了怎么办?MySQL重置root密码方法

一、单实例MySQL密码丢失解决办法

创新互联专注于共和网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供共和营销型网站建设,共和网站制作、共和网页设计、共和网站官网定制、微信平台小程序开发服务,打造共和网络公司原创品牌,更为您提供共和网站排名全网营销落地服务。

# ps -ef|grep 3306         # 查看3306实例的PID
# kill PID                 # kill PID
# mysqld_safe --skip-grant-table &
# > update mysql.user set password=PASSWORD("123456") where user='root' and host='localhost';
# > flush privileges;
# ps -ef |grep 3306
# kill PID                    # mysqld_safe还在后台运行,需kill重启mysql服务
# /etc/init.d/mysqld start
# mysql -uroot -p123456
Welcome to the MySQL monitor.  Commands end with ; or \g.
 ... ...
mysql>

二、多实例Mysql密码丢失解决办法

# ps -ef |grep 3308     
# kill PID              
# mysqld_safe --defaults-file=/data/3308/my.cnf --skip-grant-table 2>&1 >/dev/null &
# mysql -S /data/3308/mysql.sock 
> update mysql.user set password=PASSWORD("0818") where user='root' and host='localhost';
> flush privileges;
> quit
# ps -ef |grep 3308
# kill pid
# /data/3308/mysql start
# mysql -uroot -p0818 -S /data/3308/mysql.sock 
Welcome to the MySQL monitor.  Commands end with ; or \g.
......
mysql>

新闻标题:MySQL密码忘了怎么办?MySQL重置root密码方法
URL标题:http://cxhlcq.com/article/ihsgdj.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部