<返回更多

Linux安装部署Apache(杰哥教你Linux)

2021-04-12  今日头条  了了CHEN心
加入收藏

1. Apache HTTP Server

地址:
http://httpd.apache.org/download.cgi#apache24

2. APR 和 APR-Util

地址:
http://apr.apache.org/download.cgi

3. PCRE

地址:
https://sourceforge.net/projects/pcre/files/pcre/

二. 安装

1. 如果没有安装gcc/gcc-c++的话必须安装

  1. [root@localhost /]#gcc -v

gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC)

## 这个结果就是有gcc,那么就不需要看下面的安装gcc了

  1. [root@localhost /]# yum list

##一种可能的搜索结果如下:有包但没安装

Avaliable Packages

gcc-c++.x86_64

如果结果中没有gcc-c++,或者只有”gcc-c++ Avaliable Packages”没有”gcc-c++ Installed”的话就说明需要安装,安装代码如:[root@localhost /]# yum install gcc-c++

2. 安装APR、APR-Util、PCRE、Apache Http Server

  1. 将这些都安装在/usr/local中,先mkdir目录如下:

然后步骤如下(直接顺序复制粘贴):

  1. [root@localhost soft]# tar -zxf apr-1.5.2.tar.gz
  2. [root@localhost soft]# tar -zxf apr-util-1.5.4.tar.gz
  3. [root@localhost soft]# tar -zxf pcre-8.38.tar.gz
  4. [root@localhost soft]# tar -zxf httpd-2.4.18.tar.gz
  5. [root@localhost soft]# cd apr-1.5.2
  6. [root@localhost apr-1.5.2]# ./configure --prefix=/usr/local/apr
  7. [root@localhost apr-1.5.2]# make
  8. [root@localhost apr-1.5.2]# make install
  9. [root@localhost apr-1.5.2]# cd ../apr-util-1.5.4
  10. [root@localhost apr-util-1.5.4]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
  11. [root@localhost apr-util-1.5.4]# make
  12. [root@localhost apr-util-1.5.4]# make install
  13. [root@localhost apr-util-1.5.4]# cd ../pcre-8.38
  14. [root@localhost pcre-8.38]# ./configure --prefix=/usr/local/pcre --with-apr=/usr/local/apr/bin/apr-1-config
  15. [root@localhost pcre-8.38]# make
  16. [root@localhost pcre-8.38]# make install
  17. [root@localhost pcre-8.38]# cd ../httpd-2.4.18
  18. [root@localhost httpd-2.4.18]# ./configure --prefix=/usr/local/httpd --with-pcre=/usr/local/pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
  19. [root@localhost httpd-2.4.18]# make
  20. [root@localhost httpd-2.4.18]# make install

三、yum安装

  1. ## 先yum list看看有没有你可以的包
  2. yum list httpd
  3. ## 如果有的话,比如我用x86_64版,就可以安装。
  4. yum install httpd.x86_64

四、配置、启动Apache

  1. httpd.conf是主配置文件,你可以按需更改,一般来说可能需要自定义端口,那么就vim修改httpd.conf文件的监听端口,改为你希望的。
  1. 启动、关闭、重启

五、Apache设置为linux系统服务,并开机启动

  1. 将链接apachectl 复制到系统启动目录下并命名为httpd

[root@localhost bin]# cp /usr/local/httpd/bin/apachectl /etc/rc.d/init.d/httpd

到此,其实已经可以使用service httpd start等命令,但在linux服务列表还没有注册

  1. 使用chkconfig来注册apache服务,并其可以在linux的服务列表中看到(chkconfig –list)

[root@localhost bin]# vim /etc/rc.d/init.d/httpd

[root@localhost bin]# chkconfig --add httpd

此时,就可以在rc.d下的相应的3和5目录下看到S61httpd,并在0、1、2、4、6目录看到K61httpd了。

  1. 这是2步的手动设置方式,不想看可以跳过。可以手动设置自启动:将链接apachectl放一份软链接到rc3.d目录下(和/或rc*.d目录下)

[root@localhost bin]# ln -s /etc/rc.d/init.d/httpd /etc/rc.d/rc3.d/S61httpd

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>