四项确认:
第一:确认网络是否畅通 ping www.baidu.com
第二:确认yum源是否可用 yum list | grep gcc
第三:关闭主机的iptables规则
查看iptables iptables -L
关闭iptables iptables -F
查看nat这张表里面是否有规则 iptables -t nat -L
如果nat这张表中有规则加-F进行关闭 iptables -t nat -F
第四:关闭selinux
查看selinux状态 getenforce
关闭selinux setenforce 0
两项基本安装:
安装系统基本库 yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake
安装基本工具 yum -y install wget httpd-tools vim
一项初始化:
cd /opt/
在opt目录新建对应的目录
mkdir app(存放代码应用) backup(存放备份文件) download(下载的程序包) logs(日志) work