mysql安裝後默認是localhost訪問,若是須要外部訪問能夠設置一個新的帳號把host改成%,意味着全部ip都可以訪問mysql
grant all privileges on *.* to 'outUser'@'%' identified by '12' with grant option
而後sql
flush privileges;
就能夠使用outUser帳戶密碼12來外部訪問,有的時候沒法訪問須要打開防火牆開放端口centos
centos 7 中使用的是firewall-cmd命令ssh
# firewall-cmd --list-all-zones #查看全部的zone信息 # firewall-cmd --get-default-zone #查看默認zone是哪個 # firewall-cmd --zone=internal --change-zone=p3p1 #臨時修改接口p3p1所屬的zone爲internal # firewall-cmd --add-service=http #暫時開放http # firewall-cmd --permanent --add-service=http #永久開放http # firewall-cmd --zone=public --add-port=80/tcp --permanent #在public中永久開放80端口 # firewall-cmd --permanent --zone=public --remove-service=ssh #從public zone中移除服務 # firewall-cmd --reload #從新加載配置
打開3306端口tcp
firewall-cmd --add-port=3306/tcp --permanent
okide