centos6安装apache2.2

1. 从https://mirrors.tuna.tsinghua.edu.cn/apache/httpd下载httpd包

 执行命令

 wget https://mirrors.tuna.tsinghua.edu.cn/apache/httpd/httpd-2.2.32.tar.gz

  

2. 解压到本地

  

3. 进入到 httpd-2.2.32目录

 执行./configure --prefix=/usr/local/apache2 --sysconfdir=/usr/local/etc/httpd

  

4. 执行 make 命令

5. 执行make install 命令,安装完成

6. 进入到apache安装路径 /usr/local/apache2/bin ,执行启动脚本

./apachectl start

  

注意事项:

1. 启动之前检查80端口是否开启

  netstat -tan

  

2. 检查防火墙配置是否开启80端口

  

  重启防火墙

  service iptables restart

3. 如果启动中报错 :

  httpd: apr_sockaddr_info_get() failed for captian2(主机名)

  httpd: Could not reliably determine the server‘s fully qualified domain name, using 127.0.0.1 for ServerName

  方法 (1):

  设置 /usr/local/etc/http2/httpd.conf 中的ServerName 为 ServerName localhost:80

  

  

  方法(2) 

  在 /etc/hosts 文件中添加自己的主机名,如 127.0.0.1 captain2 

启动之后,可以在浏览器中输入主机ip地址,即可访问apache页面

  

时间: 2024-11-18 05:24:28

centos6安装apache2.2的相关文章

CentOS6.7上编译安装Apache2.2和Apache2.4

目录 一.Apache的工作模式 1.简介 2.比较 二.CentOS6.x上安装Apache2.2 (一)rpm安装apache (二)编译安装apache 1.安装编译环境 2.下载解压依赖包 3.安装apache 4.测试apache 5.查看apache相关信息 6.配置程序运行环境 7.导出库文件 8.导出头文件 9.导出手册 10.将Apache添加到启动服务 (三) 编译安装Apache2.4 1.编译安装apr 2.编译安装apr-util 3.安装需要的依赖包 4.编译安装Ap

centos6.5 下rpm离线安装apache2.2+php5.5+mysql5.6

1,安装,mysql 见网址:http://bt9527.blog.51cto.com/9142217/1437877 2,安装apache 在如下页面下载apache的for Linux 的源码包 http://www.apache.org/dist/httpd/ 我放在/home/目录下        解压缩:    tar -zxvf httpd-*.tar.gz    mv httpd-* apache    执行命令:    cd apache    ./configure --pre

CentOS6.5下安装apache2.2和PHP 5.5.28

CentOS6.5下安装apache2.2 1. 准备程序 :httpd-2.2.27.tar.gz 下载地址:http://httpd.apache.org/download.cgi#apache22apr-1.5.1.tar.gz 下载地址:http://apache.spd.co.il/apr/apr-util-1.5.3.tar.gz下载地址:http://apache.spd.co.il/apr/ 安装apr-1.5.1.tar.gz 1.Copy root文件夹2. Cd /root

Centos6.6编译安装apache2.4.9

本系列教程感谢linux大神马哥提供指导: Centos6.7编译安装httpd 2.4.9 + mysql-5.5.33 + php-5.4.26 (LAMP) 一.编译安装apache2.4.9 httpd-2.4: 新特性: (1) MPM支持运行DSO机制:以模块形式按需加载: (2) 支持eventMPM: (3) 支持异步读写: (4) 支持每模块及每个目录分别使用各自的日志级别: (5) 每请求配置:<If> (6) 增强版的表达式分析器: (7) 支持毫秒级的keepalive

CentOS6.3 编译安装LAMP(2):编译安装 Apache2.2.25

所需源码包: /usr/local/src/Apache-2.2.25/httpd-2.2.25.tar.gz 编译安装 Apache2.2.25 #切换到源码目录 cd /usr/local/src/Apache-2.2.25 tar -xzvf ./httpd-2.2.25.tar.gz cd ./httpd-2.2.25 #生成configure ./configure --prefix=/usr/local/apache --with-included-apr --enable-so -

CentOS-6.4-minimal版中源码安装Apache-2.2.29

/** * CentOS-6.4-minimal版中源码安装Apache-2.2.29 * ---------------------------------------------------------------------------------------------------------------------- * 源码安装软件时常见的三个步骤 * 1)配置环境:通常命令为./configure --prefix=DIR(即指定软件安装目录),如果还想启用其它功能,可在后面接着添

Centos6.7安装Apache2.4+Mysql5.5+Apache2.4

首先说下思路,因为一开始系统上已经跑了一套完成的 PHP 环境,那时候都是快速自动安装的,如果是跑一些5.3以下版本的话,很简单,几个指令,10分钟搞定了. 但现在要升级,彻底一点的话,唯有推倒重来了.所以步骤有: 1. 卸载掉当前的 Apache.php.mysql: 2. 清除残留的一些配置文件: 3. 一步步安装 Apache .mysql.php,当然在过程当中需要注意每个软件的依赖控件不可少. 下面是整体的步骤,从卸载后开始(同理适合刚刚安装好的全新系统): 1. 准备工作 ,工欲善其

LAMP编译安装(一)——安装Apache2.4

背景介绍 LAMP是LNMP结构提出之前风靡了很久的结构,本系列就从无到有一点点介绍LAMP的编译安装.首先,介绍下本系列的拓扑结构图 此时服务器响应客户端访问可以分为几种应答方式: 1.客户端向服务器端发起请求 2.服务器端查看请求类型,当为静态页面请求,直接返回结果 1.客户端向服务器端发起请求 2.服务器端查看请求类型,当为动态页面请求,通过配置文件中设置的反向代理,通过fcgi协议交给后端PHP服务器 3.PHP服务器上启用php-fpm服务,监听在一个套接字上想用请求,并将结果反馈给h

LAMP环境搭建(centos6.9+apache2.4+mysql5.7+php7.1)

安装前准备 CentOS 6.9 64位 最小化安装 yum install -y make gcc gcc-c++ perl zlib-devel libaio libpng libpng-devel libjpeg-devel pcre-develyum install -y  libXpm-devel openssl openssl-devel libxml2-devel bzip2-devel.x86_64 libjpeg-turbo-develyum install -y  freet