Home >Database >Mysql Tutorial >Redhat5下使用MySql时的一些问题_MySQL

Redhat5下使用MySql时的一些问题_MySQL

WBOY
WBOYOriginal
2016-06-01 13:43:36858browse

Redhat

bitsCN.com 首先是从无法远程连接开始的,虽然间接遇到一些问题。遇到就找出问题,发后总结发出来给大家分享,如果大家也有问题或者已经解决了,希望进行回复! 进行远程连接报错 1130在mysql数据库表user中记录了一些用户信息,里面的host指定了那些客户端可以访问。如果是在Windows下安装且指定了可以远程访问,那么就不会出现该问题。解决方法就是修改访问权限:登入mysql后,更改 “mysql” 数据库里的 “user” 表里的 “host” 列,从”localhost”改为'%'。mysql -u root -pmysql>use mysql;mysql>select 'host' from user where user='root';mysql>update user set host = '%' where user ='root';mysql>flush privileges;mysql>select 'host'   from user where user='root';退出然后重启mysql服务!   作者 cuisuqiang bitsCN.com
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