linux为什么不允许远程连接mysql
答案:2 悬赏:0 手机版
解决时间 2021-02-13 05:45
- 提问者网友:太高姿态
- 2021-02-12 19:38
linux为什么不允许远程连接mysql
最佳答案
- 五星知识达人网友:患得患失的劫
- 2021-02-12 21:17
首先linux是开源的操作系统,在安全性的级别上面是非常高的,多种机制共同保证安全。linux上面安装mysql,其中mysql的用户表中有几个要素:用户名,密码,远程主机IP。其中在linux中127.0.0.1 和 localhost 在表现上不是一个主机。默认是本机可以连接,如果需要远程连接的话,需要进行数据授权。
[root@linuxprobe ~]#grant 【权限】 to数据库 用户名@主机ip identified by '密码';
这个是用户的授权,只用授权了ip才能用哪个IP来访问。linux更多知识 建议参考《linux就该这样学》看看。要注意安全性,在设置授权时候要谨慎,希望能够帮助到你
[root@linuxprobe ~]#grant 【权限】 to数据库 用户名@主机ip identified by '密码';
这个是用户的授权,只用授权了ip才能用哪个IP来访问。linux更多知识 建议参考《linux就该这样学》看看。要注意安全性,在设置授权时候要谨慎,希望能够帮助到你
全部回答
- 1楼网友:舍身薄凉客
- 2021-02-12 22:54
1、root用户登录到mysql数据库
代码示例:
/usr/local/mysql/bin/mysql -u root -p (输入密码进入mysql)
2、进入mysql,输入:
代码示例:
use mysql;
3、查看user表的情况
代码示例:
select host,user from user;
//指明主机名称,“%”表示匹配所有字符串
4、
代码示例:
update user set host = '%' where user= 'root' limit 1;
5、输入如下命令让刚才设置的命令生效
代码示例:
mysql> flush privileges;
query ok, 0 rows affected (0.00 sec)
注意,在mysql 命令行形式下一定要输入";"
按照前面五个步骤完成之后,通过控制台输入:
代码示例:
[root@linux ~]# mysql -h localhost -u root -p
enter password:
error 1045 (28000): access denied for user 'root'@'localhost' (using password: yes)
不让这么连接数据库
原因:是因为host对应的user字段是空的,我们需要将其改为root即可
代码示例:
mysql> select host,user from user;
+-----------+------+
| host | user |
+-----------+------+
| % | root |
| 127.0.0.1 | root |
| linux | |
| linux | root |
| localhost | |
+-----------+------+
5 rows in set (0.00 sec)
解决办法一:
代码示例:
mysql> update user set user='root' where host='localhost';
query ok, 1 row affected (0.00 sec)
rows matched: 1 changed: 1 warnings: 0
mysql> flush privileges;
query ok, 0 rows affected (0.00 sec)
解决办法二:
将localhost改为本机的ip地址,则能够识别了。
代码示例:
[root@linux ~]# mysql -h 172.16.42.68 -u root -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 157
server version: 5.1.66 source distribution
copyright (c) 2000, 2012, 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.
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯