mysql数据库在Linux操作系统上的安装及容易出现的问题(2)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
如果出现了如上所示的mysql>,则证明你已经成功登录了。
五、在Windows 操作系统上利用Navicat for MySQL登录Linux系统上刚才安装的Mysql数据库
通常情况下会遇到的问题:
Error1: 2003:Can't connect to MySQL server on 'localhost'
解决方法:关闭Linux的防火墙功能,或者设置容许TCP协议的3306端口通过,可以下使用如下命令开启TCP协议的3306端口
[root@bugzilla ~]# more /etc/sysconfig/iptables
-A RH-Firewall-1-INPUT -p tcp --dport 3306 -j ACCEPT
Error2: 1130 - Host'ClientIP' is not allowed to connect to this MySQL server
解决方法:使用root 用户登陆Linux,登陆MySQL的root用户,更改容许登陆的IP地址范围。
[root@bugzilla ~]# mysql -u root -p
mysql>grant all privileges on *.* to 'root'@'%' identified by 'your password' with grant option;
这段指令容许所有用root用户输入密码登陆该mysql server,如果将'%' 换成'192.168.1.208' ,那么只有'192.168.1.208'的主机可以登陆。
摘自 寒雪痕的专栏
相关新闻>>
- 发表评论
-
- 最新评论 更多>>