Blogger Information
Blog 93
fans 0
comment 0
visits 123536
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
云服务器安装数据库MySQL后,MySQL不能从外部连接的原因及解决
想无
Original
913 people have browsed it

在使用小鸟云服务器建站的时候,因为在安装mysql的过程中遇到一些问题,所以打算记录下来,今天先整理第一个是关于安装mysql后,却不能从外部访问的原因,以及对应该怎么解决,除了自己搜索相关的资料外,也可以咨询对应的技术人员,响应很快,问题也能得到解决。
回归正题。
mysql默认只允许本地连接,也就是说,在安装完mysql后会存在两个root账户,他们的host分别是localhost和127.0.0.1,如果你的网站和数据库同在一台服务器,那么是可以访问的。但如果你的网站和数据库不在不同的服务器,那么网站用不了远程数据库了(数据库服务器拒绝访问)。
1.改表
登录phpmyadmin,把用户的host修改成%,重启服务器。
use mysql;
update user set host=’%’ where user=’root’
flush privileges;
2.授权
如:允许账户myuser使用密码1234从任何主机连接到mysql服务器的话,那就在mySQL命令行下输入:
GRANT ALL PRIVILEGES ON . TO ‘myuser’@’%’ IDENTIFIED BY ‘1234’ WITH GRANT OPTION;
这里%表示允许所有IP地址访问。可以改为特定IP,比如:
允许账户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用12345作为密码,那就在mySQL命令行下输入:
GRANT ALL PRIVILEGES ON . TO ‘myuser’@’192.168.1.3’ IDENTIFIED BY ‘12345’ WITH GRANT OPTION
最后,让设置生效
mysql>FLUSH PRIVILEGES
具体设置可以参考这篇文档:https://www.niaoyun.com/docs/16747.html/?utm_source=phpc-220218

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post