centos中安装apache,文本内容部分原创
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos中安装apache,文本内容部分原创相关的知识,希望对你有一定的参考价值。
环境:centos6.7,ip地址:192.168.1.174
1、此次操作为首次安装apache,如果之前安装过需要先行将已存在的相关文件删除以免冲突。
2、下载Apache安装包(httpd-2.4.3.tar.gz或httpd-2.2.23.tar.gz),下载地址:http://httpd.apache.org/
在安装Apache时,只安装了2.4.*版本。
httpd-2.2.23版本编译命令:
./configure --prefix=/usr/local/apache2 (安装目录参数后面可以不加任何参数,直接安装即可) make make install
httpd-2.4.3版本编译命令:
./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre (除了指定Apache的安装目录外,还要安装apr、apr-util、pcre,并指定参数) make make install
在编译Apache(在安装httpd-2.4.3时遇到的问题)时分别出现了apr not found、APR-util not found、pcre-config for libpcre not found的问题,下面就httpd-2.4.3的这些问题解决来实际操作一把。
http://apr.apache.org/download.cgi 下载apr-1.4.5.tar.gz、apr-util-1.3.12.tar.gz
http://sourceforge.net/projects/pcre/files/latest/download 下载pcre-8.31.zip
1.解决apr not found问题
[[email protected] bin]# tar -zxf apr-1.4.5.tar.gz [[email protected] apr-1.4.5]# ./configure --prefix=/usr/local/apr [[email protected] apr-1.4.5]# make [[email protected] apr-1.4.5]# make install
2.解决APR-util not found问题
[[email protected] bin]# tar -zxf apr-util-1.3.12.tar.gz [[email protected] apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config [[email protected] apr-util-1.3.12]# make [[email protected] apr-util-1.3.12]# make install
3、解决pcre-config for libpcre not found问题
[[email protected] ~]# unzip pcre-8.31.zip [[email protected] ~]# cd pcre-8.31 [[email protected] pcre-8.31]# ./configure --prefix=/usr/local/pcre [[email protected] pcre-8.31]# make[[email protected] pcre-8.31]# make install
•启动Apache:/usr/local/apache2/bin/apachectl start
•停止Apache:/usr/local/apache2/bin/apachectl stop
•重启Apache:/usr/local/apache2/bin/apachectl restart
网站放在/usr/local/apache2/htdocs目录下
配置文件(/usr/local/apache2/conf)中做了如下修改
将serverName的注释去掉并设置为本机的ip地址(192.168.1.174)
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn‘t have a registered DNS name, enter its IP address here.
#
ServerName 192.168.1.174:80
在浏览器中通过192.168.1.174:80,如果看到页面中显示“It works!”字样,则代表Apache验证通过。如果网站的index后缀是php格式的,则要修改httpd.conf配置文件(/usr/local/apache2/conf),在DirectoryIndex增加 index.php。
注:笔者有些偷懒,故部分内容直接借鉴了他人的博客,其地址为:http://www.cnblogs.com/zhuque/archive/2012/11/03/2763352.html#
以上是关于centos中安装apache,文本内容部分原创的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Apache 服务 CentOS 7 中安装模块 libphp5.so
Apache-Tomcat-9在centos7.4环境中安装部署
在腾讯云服务器centos7.5系统中lamp(centos7.5+apache+mysql+php)环境中安装ssl证书