APACHE源码安装

安装环境:Centos7.6

  下载链接没用了都,自己找吧,实在不行,直接最新版,不过网卡配置有点烦,搞8版本的话

  http://centos.hbcse.tifr.res.in/centos/7.6.1810/isos/x86_64/   //找到一个能用的(补上)

一、卸载已经安装的httpd服务(新机器可无视)

          rpm -e httpd --nodeps

二、下载安装包,需要Linux上网,当然也可以先在官网下载Apache的Linux版本,在传到Linux系统中

      httpd-2.4.43.tar.bz2 我是去Apache官网找的,链接都炸掉了,很烦

      yum install wget -y  //安装下载工具

       yum -y install gcc gcc++ zlib zlib-devel pcre-devel binutils glibc openssl-devel 

         //搞得有点多,以后基本编译啥都不用安环境了

      下载一下依赖包,啥?你说依赖包干啥的,好像是移植不同系统用的,这不是重点啦

      wget https://mirrors.tuna.tsinghua.edu.cn/apache/apr/apr-1.6.5.tar.gz

      wget https://mirrors.tuna.tsinghua.edu.cn/apache/apr/apr-util-1.6.1.tar.gz

         tar zxvf httpd-2.4.43.tar.bz2 -C /opt/       //习惯解压到/opt下面

         tar xf apr-1.6.5.tar.gz -C /opt/

         tar xf apr-util-1.6.1.tar.gz -C /opt/

三、编译,安装

      cd /opt/

       mv apr-1.6.5/ httpd-2.4.43/srclib/apr

       mv apr-util-1.6.1/ httpd-2.4.43/srclib/apr-util

        cd httpd-2.4.43/

         ./configure \                    //预编译一下

            --prefix=/usr/local/httpd \

           --enable-so \

            --enable-rewrite \

            --enable-charset-lite \

            --enable-cgi

         make && make install    //编译+安装

四、修改主配置文件,并加入systemctl管理

cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd

vi /etc/init.d/httpd

# chkconfig: 35 85 21         //第2,3行加入

# description: Apache is a World Wide Web server

chkconfig --add /etc/init.d/httpd

    systemctl start httpd    //可以通过你的web浏览器进行访问啦

    systemctl status httpd  //查看httpd服务的状态

    systemctl stop httpd   //关闭httpd服务

    systemctl  restart httpd  //重启httpd服务

可以直接在浏览器访问IP,获取apache服务页面,如果要修改,可以在/usr/local/httpd/htdocs/下修改

你可能感兴趣的:(APACHE源码安装)