使用 ssh远程命令工具连接服务器
yum -y install wget
wget -c http://gx.365db.cn/file/fikkerd-3.7.6-linux-x86-64.tar.gz
tar zxvf
fikkerd-3.7.6-linux-x86-64.tar.gz
cd
fikkerd-3.7.6-linux-x86-64.tar.gz
./fikkerd.sh install && ./fikkerd.sh start
管理后台 http://ip:6780 默认密码123456
2. 如何关闭 Apache/Nginx 服务 ?
答: 命令如下:
service httpd stop; service nginx stop
chkconfig httpd off; chkconfig nginx off
3. 如何关闭 Linux 防火墙 iptables ?
答: 命令如下:
service iptables stop;
service ip6tables stop
chkconfig iptables off;
chkconfig ip6tables off
CentOS 7.0默认使用的是firewall作为防火墙
查看防火墙状态
firewall-cmd --state
1
停止firewall
systemctl stop firewalld.service
1
禁止firewall开机启动
systemctl disable firewalld.service