MYSQL授权用户远程登陆
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MYSQL授权用户远程登陆相关的知识,希望对你有一定的参考价值。
因为之前一直在服务器上直接操作mysql,所以没有遇到过什么问题,今天开发突然要测试个功能,需要连接数据库,发现一直连接不上!
因为时间过得比较久mysql的root密码已经忘记
1.linux下更改root密码
vim /etc/my.cnf
在[mysqld]的段中加上一句:skip-grant-tables
skip-grant-tables
wq保存
/etc/init.d/mysqld reatart #重启mysql服务
mysql #登录mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 3.23.56
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the buffer.
mysql> USE mysql ; #选择数据库
Database changed
mysql> UPDATE user SET Password = password ( ‘password‘ ) WHERE User = ‘root‘ ;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 2 Changed: 0 Warnings: 0
mysql> flush privileges ;
Query OK, 0 rows affected (0.01 sec)
mysql> exit
Bye #退出数据库
2.之前只对locatehost/127.0.0.1授权,所以要赋予任何主机的访问权限
mysql -uroot -ppassword #以root用户登录mysql
mysql>use databasename #选择所要赋予权限的数据库
mysql>GRANT ALL PRIVILEGES ON shandong.* TO ‘demo‘@‘%‘WITH GRANT OPTION #赋予任何主机的访问权限
mysql> flush privileges ;
Query OK, 0 rows affected (0.01 sec)
mysql> exit
Bye #退出数据库
3.将MySQL的登录设置修改回来
# vi /etc/my.cnf
将刚才在[mysqld]的段中加上的skip-grant-tables删除
重新启动mysqld
# /etc/init.d/mysqld restart
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
本文出自 “技术宅私有空间” 博客,请务必保留此出处http://chulinx.blog.51cto.com/4098114/1742772
以上是关于MYSQL授权用户远程登陆的主要内容,如果未能解决你的问题,请参考以下文章