当前位置: > CentOS > CentOS教程 >

centos 6.5下MySQL 支持远程登陆设置

时间:2016-03-23 20:49来源:linux.it.net.cn 作者:IT

环境:

系统 centos 6.5

MySQL 5.6

 
  1. 1.赋于权限  
  2. 登陆MySQL   
  3. mysql -uroot -p  
  4. 然后执行:  
  5. grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;    
  6. flush privileges;   
  7.   
  8. 2.打开端口  
  9. /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT  
  10. /etc/init.d/iptables save   
  11. service iptables restart  


 

完美解决



(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容