文章详情页
MySQL忘记root密码以及远程无法连接的解决方法
目录1. mysql忘记root密码2. 解决远程无法连接mysql1. mysql忘记root密码
(1)停止mysql
/etc/init.d/mysql stop(2)启动mysql,忽略授权登录验证
mysqld_safe --user=mysql --skip-grant-tables --skip-networking &(3)进入数据库系统
mysql -u root mysql(4)修改密码
mysql> UPDATE user SET Password=PASSWORD(‘abc123') where USER='root';mysql> FLUSH PRIVILEGES;mysql> quit(5)重新启动mysql
/etc/init.d/mysql restart(6)登陆数据库
mysql -uroot –p2. 解决远程无法连接mysql给用户赋予权限
grant all privileges on *.* to root@192.168.191.168 identified by 'abc123';到此这篇关于MySQL忘记root密码以及远程无法连接的解决方法的文章就介绍到这了,更多相关MySQL root密码及远程连接内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!
排行榜