http://nginx.org/ Nginx下载地址
http://blog.csdn.net/QQ_31673689/article/details/51291390 各种国内镜源像总汇
mkdir /web && mkdir /web/{server,www,PRogram,log,conf} && mkdir /web/server/{apache,mysql,php,nginx,lib} && mkdir /web/server/mysql/{data,tmp,log}安装Apache
安装APR
cd /web/program/ && wget https://mirrors.tuna.tsinghua.edu.cn/apache/apr/apr-1.5.2.tar.gz && tar -xzvf apr-1.5.2.tar.gz && cd apr-1.5.2 && ./configure --prefix=/web/server/lib/apr --enable-shared=yes --enable-static=no && make && make install安装APR-UTIL
cd /web/program && wget https://mirrors.tuna.tsinghua.edu.cn/apache/apr/apr-util-1.5.4.tar.gz && tar -xzvf apr-util-1.5.4.tar.gz && cd apr-util-1.5.4 && ./configure --prefix=/web/server/lib/apr-util -with-apr=/web/server/lib/apr --enable-shared=yes --enable-static=no && make && make install安装PCRE
yum -y install gcc && yum -y install gcc-c++ && cd /web/program && wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz && tar -xzvf pcre-8.39.tar.gz && cd pcre-8.39 && ./configure --prefix=/web/server/lib/pcre --enable-shared=yes --enable-static=no && make && make install安装Apache
cd /web/program && wget https://mirrors.tuna.tsinghua.edu.cn/apache/httpd/httpd-2.4.25.tar.gz && tar -xzvf httpd-2.4.25.tar.gz && cd /web/program/httpd-2.4.25 && ./configure --prefix=/web/server/apache -with-apr=/web/server/lib/apr -with-apr-util=/web/server/lib/apr-util -with-pcre=/web/server/lib/pcre --enable-so --enable-shared=yes --enable-static=no && make && make install后续配置
/cp -rf /web/server/apache/bin/apachectl /etc/init.d/apache && service apache start安装MySQL
安装PHP
安装Nginx
新闻热点
疑难解答