Linux下编译安装Apache

    xiaoxiao2021-12-14  61

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

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

    1、service httpd stop 2、ps -ef | grep httpd 3kill -9 pid号(逐个删除) 4、rpm -qa |grep httpd 5、rpm -e httpd软件包

    二、下载Apache安装包(httpd-2.4.3.tar.gz) 官网下载地址:http://httpd.apache.org/ httpd-2.4.3以及依赖包百度云地址:http://pan.baidu.com/s/1boHLzkV 密码:gm81

    1.安装apr

    [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

    [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

    [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

    4.编译安装httpd-2.4.3: 在安装Apache时,不同版本在编译时configure后跟的参数不同。 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 make 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目录下

    5.验证

    搜索”#ServerName”,添加ServerName localhost:80

    [root@server conf]# vi httpd.conf ServerName www.example.com:80 ServerName localhost:80

    在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. # <IfModule dir_module> DirectoryIndex index.html index.php </IfModule>
    转载请注明原文地址: https://ju.6miu.com/read-970530.html

    最新回复(0)