如何安装navicate for mysql
发布网友
发布时间:2022-05-07 03:05
我来回答
共1个回答
热心网友
时间:2022-05-08 02:47
软件版本和安装环境:
1.navicat111_mysql_en.tar.gz
2.MySQL-5.6.28-1.el6.x86_64.rpm-bundle.tar
3.Centos6.7
二、安装步骤
1.关闭防火墙
第一步关掉linux的防火墙,由于自己之前没有关闭防火墙导致navicat启动不了,在这个地方卡了很久。
1)关闭SELINUX
打开/etc/selinux/config
在文件中加入SELINUX=disabled
2)关闭防火墙
service iptables stop(临时关闭)
chkconfig iptables off(永久关闭)
2.安装wine
由于navicat要借助wine,所以得首先安装wine。
1)安装epel源。
安装epel
[root[@spark]Desktop]$ rpm -ivh epel-release-6-8.noarch.rpm
安装wine
yum install wine
3.安装navicat
1)解压软件并移动到自己的目录
[root[@spark]Desktop]$ tar zxvf navicat111_mysql_en.tar.gz
[root[@spark]Desktop]$ mv navicat111_mysql_en /usr/local/
2)运行navicat
进入navicat目录
[root[@spark]navicat]# ./start_navicat 至此,navicat安装完成。