RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
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密码方法
分享链接:http://sczitong.cn/article/ihsgdj.html