Home > Database > Mysql Tutorial > body text

远程连接mysql资料_MySQL

WBOY
Release: 2016-06-01 13:54:33
Original
946 people have browsed it

妈的。。今天下午忙了半天也没搞定mysql的远程连接。。郁闷啊。。

最后回到家里上网无意见看到了篇比较正点的资料。。

呵呵,,

问题解决了。。

明天搞定ftp服务器。。哈哈


netstat -an | grep LISTEN  查看端口

远程连接到mysql需要做的- -
                                      

1、进入mysql,创建一个新用户xuys:
格式:grant 权限 on 数据库名.表名 用户@登录主机 identified by "用户密码";
grant select,update,insert,delete on *.* to xuys@192.168.88.234 identified by "xuys1234";
   查看结果,执行:
   use mysql;
   select host,user,password from user;
   可以看到在user表中已有刚才创建的xuys用户。host字段表示登录的主机,其值可以用IP,也可用

主机名,
   将host字段的值改为%就表示在任何客户端机器上能以xuys用户登录到mysql服务器,建议在开发时

设为%。  
   update user set host = '%' where user = 'xuys';

2、 ./mysqladmin -uroot -ppwd reload
./mysqladmin -uroot -ppwd shutdown

3、./mysqld_safe --user=root &
记住:对授权表的任何修改都需要重新reload,即执行第3步。

如果经过以上3个步骤还是无法从客户端连接,请执行以下操作,在mysql数据库的db表中插入一条记录


use mysql;
insert into db

values('192.168.88.234','%','xuys','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
update db set host = '%' where user = 'xuys';
重复执行上面的第2、3步。

 

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!