Home >Database >Mysql Tutorial >MySQL数据库可以用任意ip连接访问的方法_MySQL

MySQL数据库可以用任意ip连接访问的方法_MySQL

WBOY
WBOYOriginal
2016-06-01 13:04:061217browse

通过CMD命令行修改数据库表的一个字段的值,实现连接,访问。

第一步、找到MYSQL软件安装所在的bin目录;

(1)cd\当前目录

\

(2)指定MYSQL安装的bin目录

\

(3)输入 -h localhost -u root -p;出现输入密码,此时输入你在安装MYSQL软件设置的密码即可。

\

(4)输入 use mysql; select user,host from user;我们的目的是要把localhost用%代替即可。

\

(5)使用update user set host='%' where host='localhost';语句更新即可。

(6)修改成这个样子就ok了。

\

输入如上语句查询结果如下:

\

此时,MYSQL就可以用任何IP地址来访问了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn