大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
vi installapache.sh
成都创新互联公司-专业网站定制、快速模板网站建设、高性价比青浦网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式青浦网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖青浦地区。费用合理售后完善,10余年实体公司更值得信赖。
#!/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端口即为成功