Apache安装脚本

#!/bin/bash
#2018年6月6日15:13:38
#auto install apache web
#by author www.jfedu.net
#######################
wget -c https://mirrors.tuna.tsinghua.edu.cn/apache/httpd/httpd-2.4.29.tar.gz
tar -xzf httpd-2.4.29.tar.gz
cd httpd-2.4.29
./configure --prefix=/usr/local/apache2/ --enable-so --enable-rewrite --enable-proxy --enable-ssl
make
make install
/usr/local/apache2/bin/apachectl start
ps -ef|grep httpd
netstat -tnlp|grep 80
setenforce 0
firewall-cmd --add-port=80/tcp --permanent
systemctl reload firewalld.service

猜你喜欢

转载自blog.csdn.net/cnsdlywei/article/details/80624719
今日推荐