码迷,mamicode.com
首页 > 数据库 > 详细

Navicat 如何设置正常连接Linux下的mysql

时间:2019-02-28 18:33:38      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:lis   开启   evel   ...   tab   art   系统   ice   火墙   

1.查看防火墙状态,如果开启了,则将其关闭。

查看防火墙:

[root@localhost ~]# service iptables status

关闭防火墙:

[root@localhost ~]# service iptables stop

     可以设置把防火墙永久关闭:

     永久关闭防火墙:

           chkconfig iptables off

     开启:

           chkconfig iptables on
2.重启系统

reboot

3.启动mysql服务

[root@localhost ~]# service mysqld start

============================

设置开机启动msql服务:

查看状态:

[root@localhost ~]# chkconfig --list

mysqld 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭

如果看到mysql的服务,并且3,4,5都是on的话则成功,如果是off,则键入

[root@localhost ~]# chkconfig --level 345 mysqld on

成功状态:

[root@localhost ~]# chkconfig --list

mysqld 0:关闭 1:关闭 2:关闭 3:启用 4:启用 5:启用 6:关闭

重启(reboot)验证:

[root@localhost ~]# service mysqld status

mysqld (pid 1617) 正在运行...

 

Navicat 如何设置正常连接Linux下的mysql

标签:lis   开启   evel   ...   tab   art   系统   ice   火墙   

原文地址:https://www.cnblogs.com/houzp/p/10451940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!