Apache(音译为阿帕奇)是世界使用排名第一的Web服务器软件。它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一。它快速、可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中。
Apache是普通服务器,本身只支持html即普通网页。可以通过插件支持PHP,还可以与Tomcat连通(单向Apache连接Tomcat,就是说通过Apache可以访问Tomcat资源。反之不然)。
Apache和Tomcat都可以做为独立的web服务器来运行,但是Apache不能解释java程序(jsp,serverlet)
httpd下载 apr和apr-util下载 pcre下载 全部插件下载链接:https://pan.baidu.com/s/1T4J99-HT4h73SKkc90mttw 提取码:qobo
apr和apr-util
pcre
将文件上传至/opt/tools
cd /opt/tools/httpd
tar -zxvf apr-1.5.2.tar.gz -C ./
cd ./apr-1.5.2
./configure --prefix=/usr/local/httpd/apr
make
make install
./configure --prefix 编译的时候用来指定程序存放路径
cd /opt/tools
tar -zxvf apr-util-1.5.4.tar.gz -C ./
cd ./apr-util-1.5.4
./configure --prefix=/usr/local/httpd/apr-util --with-apr=/usr/local/httpd/apr/bin/apr-1-config
make
make install
–with指的是安装本文件所依赖的库文件,–with-依赖包名称=依赖包目录
cd /opt/tools
tar -zxvf pcre-8.42.tar.gz -C ./
cd ./pcre-8.42
./configure --prefix=/usr/local/httpd/pcre --with-apr=/usr/local/httpd/apr/bin/apr-1-config
make
make install
cd /opt/tools
tar -zxvf httpd-2.4.34.tar.gz -C ./
cd ./httpd-2.4.34
./configure --prefix=/usr/local/httpd/apache2 --with-apr=/usr/local/httpd/apr/bin/apr-1-config --with-apr-util=/usr/local/httpd/apr-util/bin/apu-1-config --with-pcre=/usr/local/httpd/pcre/bin/pcre-config --enable-dav --enable-so
make
make install
vim /usr/local/httpd/apache2/conf/httpd.conf
cp /usr/local/httpd/apache2/bin/apachectl /etc/rc.d/init.d/apache
chkconfig --add apache
service apache start
验证启动
ps -ef | grep http
上传自己的页面至 /usr/local/httpd/apache2/htdocs 目录
vim /etc/profile
最下边加入
export HTTP_HOME=/usr/local/httpd/apache2
export PATH=$PATH:$HTTP_HOME/bin
#生效
source /etc/profile
验证HTTP环境
httpd -v
如果想更改网站主目录,在httpd.conf中更改为你想要的目录 如DocumentRoot /web/www/
以上命令都在新的云服务器上测试执行过,如果有问题 欢迎留言区交流