Linux rhel 6.4 apache编译安装以及简单配置过程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux rhel 6.4 apache编译安装以及简单配置过程相关的知识,希望对你有一定的参考价值。

Linux rhel  6.4 编译安装apache过程(1)


注:以下摘取的都是安装过程中执行的命令,命令反馈没有贴出来以"......"代替。观看的时候注意执行命令时所在的目录。


安装平台

[[email protected] ~]# cat /etc/redhat-release

Red Hat Enterprise Linux Server release 6.4 (Santiago)


需要的工具版本以及下载地址

1.httpd-2.4.25.tar.gz 

(http://httpd.apache.org/download.cgi#apache24)

2.apr-1.5.2.tar.gz

(http://apr.apache.org/download.cgi)

3.apr-util-1.5.4.tar.gz

(http://apr.apache.org/download.cgi)

4.pcre-8.40.tar.gz 

(https://ftp.pcre.org/pub/pcre/)


下载好以后将这些工具上传到Linux的/media目录下。(我上传使用了winSCP工具)


解压缩

[[email protected] media]# cd /media/

[[email protected] media]# tar zxvf apr-1.5.2.tar.gz -C /opt/

......

[[email protected] media]# tar zxvf apr-util-1.5.4\ .tar.gz -C /opt/

......

[[email protected] media]# tar zxvf pcre-8.40.tar.gz -C /opt/

......

[[email protected] media]# tar zxvf httpd-2.4.25.tar.gz -C /opt/

......


解压好后进入/opt目录,查看一下解压的结果

[[email protected] media]# cd /opt/

[[email protected] opt]# ls

apr-1.5.2  apr-util-1.5.4  httpd-2.4.25  pcre-8.40  rh


检查一下是否有Linux自带的httpd服务,如果有需要关闭相关的服务并用rpm卸载httpd相关的包。

[[email protected] opt]# rpm -qa | grep httpd

[[email protected] opt]#

我这里并之前并没有安装httpd相关的包。


安装httpd还需要gcc-c++

[[email protected] opt]# yum -y install gcc-c++*

......


安装apr apr-util以及pcre三个工具,如果不安装这三个工具编译httpd的时候会报错,提示需要这三个工具。

安装apr

[[email protected] opt]# cd apr-1.5.2/

[[email protected] apr-1.5.2]# ls

......

[[email protected] apr-1.5.2]# ./configure --prefix=/usr/local/apr

......

[[email protected] apr-1.5.2]# make

......

[[email protected] apr-1.5.2]# make install

......

继续安装apr-util

[[email protected] apr-1.5.2]# cd /opt/apr-util-1.5.4/

[[email protected] apr-util-1.5.4]# ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config

......

[[email protected] apr-util-1.5.4]# make

......

[[email protected] apr-util-1.5.4]# make install

......

继续安装pcre

[[email protected] apr-util-1.5.4]# cd /opt/pcre-8.40/

[[email protected] pcre-8.40]# ./configure --prefix=/usr/local/pcre

......

[[email protected] pcre-8.40]# make

......

[[email protected] pcre-8.40]# make install

......


这三个工具编译安装好后就可以继续httpd的安装了

[[email protected] httpd-2.4.25]# ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre/

(安装httpd并给出三个工具的路径)

......

[[email protected] httpd-2.4.25]# make

......

[[email protected] httpd-2.4.25]# make install

......


编译结束后如果没有报error的话,安装基本就结束了。

尝试下启动apache

启动:

[[email protected] httpd-2.4.25]# /usr/local/apache/bin/apachectl start

AH00557: httpd: apr_sockaddr_info_get() failed for chengmanyu.test

AH00558: httpd: Could not reliably determine the server‘s fully qualified domain name, using 127.0.0.1. Set the ‘ServerName‘ directive globally to suppress this message

(上面的问题并不影响使用,在接下来的配置中我们设置一下主机名就可以避免这个提示)


如果没有什么报错,那么apache已经开始运行了,我们检测一下我们的劳动成果。

先关掉本机的防火墙

[[email protected] httpd-2.4.25]# service iptables stop

iptables: Flushing firewall rules:                         [  OK  ]

iptables: Setting chains to policy ACCEPT: filter          [  OK  ]

iptables: Unloading modules:                               [  OK  ]


然后用在同一个域中的其他主机或在本机的浏览器中输入apache所在主机的 ip:80(ip+:80),浏览器跳转页面显示

it works!

到这里apache的安装已经完成了,但是现网中这样并不能直接使用还需要一些简单的设置。

本文出自 “盛满鱼” 博客,请务必保留此出处http://chengmanyu.blog.51cto.com/7198694/1909709

以上是关于Linux rhel 6.4 apache编译安装以及简单配置过程的主要内容,如果未能解决你的问题,请参考以下文章

Linux-rhel6.4 编译安装PHP,Nginx与php连接

在 RHEL 6.4 上手动构建和安装 Apache 2.4.x

在 RHEL 6.4 上永久挂载 Netapp NFS 共享

Linux-RHEL6.4部署zabbix监控

1-linux系统管理之安装RHEL 6.4

Linux-rhel6.4部署nginx