apache一鍵安裝腳本

vi installapache.sh

#!/bin/bash

tar -zxf apr-1.4.6.tar.gz

cd apr-1.4.6

./configure --prefix=/usr/local/apr &>/dev/null

make &>/dev/null

make install &>/dev/null

cd

tar -zxf apr-util-1.4.1.tar.gz

cd apr-util-1.4.1

./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config &>/dev/null

make &>/dev/null

make install &>/dev/null

cd

tar -zxf pcre-8.30.tar.gz

cd pcre-8.30

./configure --prefix=/usr/local/pcre &>/dev/null

make &>/dev/null

make install &>/dev/null

cd

tar -zxf httpd-2.4.1.tar.gz

cd httpd-2.4.1

./configure --prefix=/usr/local/apache2 -enable-so -enable-rewrite --with-mpm=worker --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre &>dev/null

make &>/dev/null

make install &>/dev/null

cd

/usr/local/apache2/bin/apachectl start

:wq

netatat -tunlp | grep httpd 

有80端口即爲成功

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章