centos7 mysql 设置外部访问


centos7 mysql 设置外部访问

mysql安装后默认是localhost访问,如果需要外部访问可以设置一个新的账号把host改为%,意味着所有ip均可以访问

1
grant all privileges on *.* to 'outUser'@'%' identified by '12' with grant option

然后

1
flush privileges;

就可以使用outUser账户密码12来外部访问