centos 源码安装apache

redhat6采用centos yum源。

第一步下载apache依赖的软件包并安装

安装 apr
下载地址:http://apr.apache.org/download.cgi

解压包:tar -jxvf apr-1.5.0.tar.bz2 注意:这里的包的格式是tar.bz2格式,如果是.tar格式的用 tar -zxvf +包的名字 命令解压。

进入该包的文件夹内,依次执行以下命令:

./configure --prefix=/work/installed/apr (注意:configure安装的文件夹目录可以自己定义)

make

make install

安装 apr-util
 下载地址:http://apr.apache.org/download.cgi
 解压包: tar -jxvf  apr-util-1.5.3.tar.bz2

进入该文件夹并依次执行:

./configure --prefix=/work/installed/apr-util --with-apr=/work/installed/apr

make

   make install

安装 pcre
  下载地址:http://pcre.org/
   解压包:tar -jxvf  pcre-8.35.tar.bz2    

./configure --prefix=/work/installed/pcre

make

make install

注意:如果在安装 pcre 时,遇到问题:configure: error: You need a C++ compiler for C++ support.
        ubuntu的解决方法sudo apt-get install build-essential

redhat6/centos6 解决方法 :yum安装包即可:yum install gcc gcc-c++ kernel-devel

第二步安装Apache并配置:

安装:

下载地址:http://httpd.apache.org/
 解压:tar -jxvf  httpd-2.4.9.tar.bz2

进入解压后的文件内并执行:

 ./configure --prefix=/work/installed/apache --with-apr=/work/installed/apr --with-apr-util=/work/installed/apr-util --with- pcre=/work/installed/pcre --enable-module=shared

其中--enable-module=shared表示Apache可以动态的加载模块,为以后安装php铺垫。

make

make install

注意:如果安装错误,想重新装的话,先删除安装的文件夹,然后在解压后的文件夹内执行清除编译:make clean all

第三步配置Apache:

修改配置文件,如果不修改的话就启动了apache服务的话就会出现问题:
AH00558: httpd: Could not reliably determine the server‘s fully qualified domain name, using 127.0.1.1. Set the ‘ServerName‘ directive globally to suppress this message
  解决方法:

在安装的目录下修改文件:

命令:vim /work/installed/apache/conf/httpd.conf
         把:
            # ServerName www.example.com:80
         改为:
              ServerName localhost:80

然后也可以配置自己的发布主页目录:

同时也可以添加php的主页:

如果 /etc/下有hosts文件的话修改:

修改文件: vi /etc/hosts

在后面输入:192.168.8.119  server.example.com

IP地址改成自己的ip就行了。

启动apache服务:

输入命令:/work/installed/apache/bin/apachectl  start

开机自动启动:vim etc/rc.local
           
添加:/work/installed/apache/bin/apachectl start   这里是apache的安装目录里面的配置文件,让它开机自动启动就行啦!

如果不行的话关闭防火墙:iptables -F

输入IP地址可以看到:it works!

但是这种情况必须关闭防火墙,所以需要配置防火墙:

打开iptables的配置文件:vi /etc/sysconfig/iptables

添加一条80端口:(如果自己自定义端口的话,填写自己的端口)

-A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT

时间: 2024-10-10 00:56:51

centos 源码安装apache的相关文章

centos 源码安装apache 之apr、apr-util

apr 和 apr-util官网下载地址: http://apr.apache.org/download.cgi 安装顺序是先安装apr然后再安装 apr-util,因为安装apr-util需要apr环境 首先安装apr 指定安装到/usr/local/apr wget http://apache.fayea.com//apr/apr-1.5.1.tar.gz tar zxvf apr-1.5.1.tar.gz cd apr-1.5.1 ./configure --prefix=/usr/loc

CentOS 7.4下源码安装 Apache HTTP Server(httpd-2.4.35)

CentOS 7.4下源码安装 Apache HTTP Server(httpd-2.4.35) 前提:确保安装了expat-devel, APR包 (apr-1.6.3.tar.gz 和 apr-util-1.6.1.tar.gz); 用YUM方式安装expat-devel 和 apr-util-devel yum -y install expat-devel yum -y install apr-util-devel 解压apr-1.6.3.tar.gz后进入该目录下,执行: ./confi

烂泥:源码安装apache

本文由秀依林枫提供友情赞助,首发于烂泥行天下. 最近要开始学习nagios监控方面的知识了,但是nagios与apache结合的比较紧密,所以本篇文章就先把apache的源码安装学习下. 我们现在分以下步骤进行安装apache: 1. 安装编译环境 2. 卸载原有apache 3. 下载解压源码包 4. 安装apache 5. 测试apache 6. 查看apache安装生成的目录 7. 查看apache的配置文件 8. apache加入系统服务 一.安装编译环境 在安装apache之前,我们需

LAMP配置笔记之源码安装apache

下载Apache源码: http://httpd.apache.org/(当前最新版本为2.4.12) tar -xf http-xx.tar cd http-xx ./configure --enable-so          //另外还可以使用 --prefix=path 指定安装位置,默认安装位置为: /usr/local/apache2/ ,完整的配置选项参考官方文档:http://httpd.apache.org/docs/2.4/programs/configure.html ma

源码安装Apache,报错:Cannot use an external APR with the bundled APR-util和httpd: Could not reliably determine the server's fully qualified domain name

一.解决APR和APR-util错误: 1.1.安装APR: [[email protected] httpd-2.2.23]# cd srclib/apr [[email protected] apr]# ./configure --prefix=/usr/local/apr root@ganglia apr]# make && make install 1.2.安装APR-util: [[email protected] apr]# cd ../apr-util/ [[email pr

Centos7源码安装Apache和PHP

源码安装Apache 安装需要的依赖 yum -y install gcc autoconf automake make pcre pcre-devel openssl openssl-devel?#pcre是正则表达式库#openssl是安全通信的库 安装apr和apr-until #apr是Apache可移植运行时#apr-until是Apache可移植运行时实用程序库?wget https://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-1.7

Centos 7.0 编译安装LAMP(Linxu+apache+mysql+php)之源码安装Apache (一)

Apache 简介: Apache是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一.它快速.可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中. 安装环境: 系统: centos 7.0 最小化安装 软件:httpd-2.4.26 依赖包:apr .apr-util .pcre .gcc .gcc-c++ .perl-dvel.perl.openssl .openssl-

Linux 源码安装apache 与常见错误解决

文档原位置 一.编译安装apache 1.解决依赖关系 httpd-2.4.4需要较新版本的apr和apr-util,因此需要事先对其进行升级. 升级方式有两种,一种是通过源代码编译安装,一种是直接升级rpm包(谨慎!小心).下面是使用源代码的方式行,它们的下载路径为:(~_~)这里不再说到那里下载了,相信你有能力找的到的,呵呵 2.安装依赖的软件包(当然这里可以认为成需要的编译环境咯!) yum -y install pcre-devel yum -y install  "Developmen

CentOS源码安装nagios与nagios-plugin

CentOSx64 源码安装nagios与nagios-plugin 官方网址:http://www.nagios.org 一.安装指导: http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html 二.nagios的配置 1)修改/usr/local/nagios/etc/nagios.cnf 文件修改如下: #cfg_file=/usr/local/nagios/etc/objects/windows.cfg cfg_file=