服务器版本:centos 6.5

版本:Apache2.2.32

下载Apache安装包:wget http://mirror.bit.edu.cn/apache/httpd/httpd-2.2.32.tar.gz

安装Apache依赖的软件: yum install -y zlib-devel

解压:tar -zxvf httpd-2.2.32.tar.gz

进入解压后的目录里面执行如下操作:

第一步:./configure --prefix=/application/apache2.2.32 --enable-deflate --enable-expires --enable-headers --enable-modules=most --enable-so --with-mpm=worker --enable-rewrite

第二部:make

第三部:make install

######至此安装结束!!!!##########

检查语法是否有错误

启动http服务

检查http服务是否启动

客户端显示lt works,即表服务正常

Apache配置文件介绍:

|——bin  ##http用到的命令

| |—— ab #服务器性能测试工具

| |——apachectl #控制Apache启动的命令

| |——apxs #是Apache HTTP 编译和安装扩展模块的工具

#后文在编译php软件是就用到了此命令,

#例如:--with-apxs2=/application/apache2.2.32/bin/apxs

| |——htcacheclean #清理磁盘 缓冲区的命令,很少用到

| |—— htpasswd #建立和更新基本认证的文件(打开网页需要输入用户名和密码)

| |—— httpd #httpd为Apache控制 命令程序, apachectl执行时会调用httpd

| |—— rotatelogs #Apache自带的日志轮询命令

|——conf  #http配置文件的目录

| |—— extra #这个是额外的Apache配置文件目录,这个目录文件我们会经常访问修改。

#如: httpd-vhosts.conf 默认就在此目录

| |——httpd.conf #apache 的住配置文件

|——htdocs #编译 Apache时默认的站点目录

| |—— index.html #默认的网站首页面

|——logs # Apache的错误日志和访问日志

| |—— access_log #这是Apache默认的访问日志

| |——error_log #这是Apache的错误日志,如果Apache出现错误可以查看这个日志。

| |——httpd.pid #httpd 的pid文件, http进程启动后,会把所有进程的ID写到此文件。

|——modules #Apache的模块目录,比如PHP、 memcache等模块编译后都在这里。