15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > 主机连不上虚拟机数据库

主机连不上虚拟机数据库

时间:2023-07-14 04:27:01 | 来源:网站运营

时间:2023-07-14 04:27:01 来源:网站运营

主机连不上虚拟机数据库:一、无法远程访问,用户没有授权远程访问

1.启动虚拟机mysql服务

# service mysqld start





2.进入mysql


# mysql -u root -p




3. 查看是否仅仅授权root localhost权限,若是,远程访问则无法连接


mysql> select Host, User, Password from mysql.user;




4.为root授予%权限





mysql> update user set host = '%' where host = 'localhost';

mysql> flush privileges;

完成!










2:二、linux防火墙开启

1.检查主机是否能打开虚拟机的3306(mysql默认)端口




# telnet 虚拟机ip地址 3306


telnet不通执行以下步骤


2.查看防火墙是否开启


# iptables -L





一、无法远程访问,用户没有授权远程访问
1.启动虚拟机mysql服务
# service mysqld start


2.进入mysql

# mysql -u root -p

3. 查看是否仅仅授权root localhost权限,若是,远程访问则无法连接

mysql> select Host, User, Password from mysql.user;

4.为root授予%权限


mysql> update user set host = '%' where host = 'localhost';
mysql> flush privileges;
完成!


二、linux防火墙开启
1.检查主机是否能打开虚拟机的3306(mysql默认)端口

# telnet 虚拟机ip地址 3306

telnet不通执行以下步骤

2.查看防火墙是否开启

# iptables -L


3.关闭防火墙

# iptables -F

关键词:数据,虚拟,主机

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭