开启mysql远程访问权限

编辑于:2023-11-27

*开启远程访问存在安全风险

查看用户情况:

SELECT user,authentication_string,plugin,host FROM mysql.user;

1.登录mysql

mysql -u root -p

2.修改配置

% - 所有ip都能访问

update mysql.user set host='%' where user='root';

3.刷新权限,使其生效

flush privileges;

4.退出

exit;

其他命令

启动mysql
systemctl start mysql
停止mysql服务
systemctl stop mysql
重启mysql服务
systemctl restart mysql

#service mysql restart
自启动
systemctl enable mysql

返回列表