首页 > 【转载】Linux下安装、配置、启动Apache

【转载】Linux下安装、配置、启动Apache

原文地址:http://www.cnblogs.com/zhuque/archive/2012/11/03/2763352.html

安装Apache前准备:

1、检查该环境中是否已经存在httpd服务的配置文件,默认存储路径:/etc/httpd/httpd.conf(这是centos预装的Apache的一个ent版本,一般我们安装源代码版的Apache)。如果已经存在/etc/httpd/httpd.conf,请先卸载或者关闭centos系统自带的web服务,执行命令:chkconfig  httpd off,再或者把centos自带的httpd服务的80端口改为其他端口,只要不与我们安装的Apache服务的端口冲突就可以啦。

停止并卸载Linux系统自带的httpd服务:

1、service httpd stop

2、ps -ef | grep httpd

3、kill -9 pid号(逐个删除)

4、rpm -qa |grep httpd

5、rpm -e httpd软件包

[root@localhost bin]# find / -name httpd.conf
[root@localhost bin]# 

2、下载Apache安装包(httpd-2.4.3.tar.gz或httpd-2.2.23.tar.gz),下载地址:http://httpd.apache.org/

在安装Apache时,我分别针对不同版本进行了安装,在编译时是不同的,configure后跟的参数不同。

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问题

  [root@localhost bin]# tar -zxf apr-1.4.5.tar.gz[root@localhost apr-1.4.5]# ./configure --prefix=/usr/local/apr[root@localhost apr-1.4.5]# make[root@localhost apr-1.4.5]# make install

2.解决APR-util not found问题

  [root@localhost bin]# tar -zxf apr-util-1.3.12.tar.gz[root@localhost apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config[root@localhost apr-util-1.3.12]# make[root@localhost apr-util-1.3.12]# make install

3、解决pcre-config for libpcre not found问题

  [root@localhost ~]# unzip pcre-8.31.zip[root@localhost ~]# cd pcre-8.31[root@localhost pcre-8.31]# ./configure --prefix=/usr/local/pcre[root@localhost pcre-8.31]# make[root@localhost pcre-8.31]# make install

如果已经存在/etc/httpd/httpd.conf,请先卸载或者关闭centos系统自带的web服务,执行命令:chkconfig  httpd off,再或者把centos自带的httpd服务的80端口改为其他端口,只要不与我们安装的Apache服务的端口冲突就可以啦。

•启动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目录下

在IE中通过http://localhost:80,如果看到页面中显示“It works!”字样,则代表Apache验证通过。如果网站的index后缀是PHP格式的,则要修改httpd.conf配置文件(/usr/local/apache2/conf),在DirectoryIndex增加 index.php。

复制代码
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
DirectoryIndex index.html index.php
复制代码

转载于:https://www.cnblogs.com/yangang92/p/5983671.html

更多相关:

  • 1 - 检查当前版本 [root@localhost ~]# uname -a Linux localhost.localdomain 3.10.0-957.el7.x86_64 #1 SMP Thu Nov 8 23:39:32 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux [root@local...

  • 一、部署环境说明 docker服务版本:version 18.09.0nginx服务版本:version: nginx/1.15.10redis服务版本:version: redis/5.0.3tomcat服务版本:version: tomcat/8.5.30JDK服务版本:alpine-oraclejdk8 二、安装docker服...

  • 安装前要关闭防火墙,防止外网不能访问,这一点很重要,要不然外网访问不了; ①关闭防火墙:service iptables stop  ②永久关闭防火墙:chkconfig iptables off ③查看防火墙状态:service iptables status 1.安装Apache [root@localhost ~]# yum -...

  • 安装前提 在CentOS 7中安装与配置JDK8 安装tomcat apache-tomcat-8.0.14.tar.gz文件上传到/usr/local中执行以下操作:  [root@localhost ~]# cd /usr/local  [root@localhost ~]# tar -zxv -f apache-tom...

  • 序言: ------------- 此文档旨在描述Android.mk文件的语法,Android.mk文件为Android NDK(原生开发)描述了你C/C++源文件。为了明白下面的内容,你必须已经阅读了docs/OVERVIEW.TXT的内容,它解释了Android.mk文件扮演的角色和用途。 概述:--------- 写...

  • 1. 将 Apache24 解压到 C 盘根目录2. 修改配置文件 Apacheconfhttpd.conf 在大约 39 行处,将文件路径修改为 Apache 目录3. 打开 CMD 命令提示符(用管理员权限运行) 在桌面右键创建快捷方式,输入 cmd,下一步,完成 选中 cmd 快捷方式,右键 - 使用管理员权限运行 命令:第一条...

  • 参考资料: 1、《Apache源代码全景分析》 2、《鸟哥服务器架设篇》 一、不同的开发人员应该关注的知识点 Apache管理员                配置文件、配置指令 模块开发人员                  全部内容 服务器开发人员               MP...

  • 搭建Mantis 缺陷管理系统 By Snooper 错误必有!欢迎指正! 什么是Mantis MantisBT is a free popular web-based bugtracking system (feature list). It is written in the PHP scripting language and...