安装apche服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装apche服务相关的知识,希望对你有一定的参考价值。

一,yum 安装apche服务;

  1. yum -y install httpd   yum安装

  2. vim /var/www/html    网页目录

  3. chkconfig --levels 235 httpd on  设置开机启动Apache

  4. service httpd start  //etc/init.d/httpd start   启动服务

二,源码包安装apche

  1. cd /usr/local/src

  2. wget  http://mirrors.sohu.com/apache/httpd-2.2.31.tar.gz(前提要安装wget)

  3. tar  zxvf   httpd-2.2.31.tar.gz

  4. ./configure --prefix=/usr/local/apache2 --with-included-apr --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --with-pcre    (要安装gcc)(--prefix 指定安装到哪里, --enable-so 表示启用DSO [1] --enable-deflate=shared 表示共享的方式编译deflate,后面的参数同理。如果这一步你出现了这样的错误:) 会出现报错error: mod_deflate has been requested but can not be built due to prerequisite failures;解决办法:yum install -y zlib-devel;

  5. 为了避免在make的时候出现错误,所以最好是提前先安装好一些库文件:yum install -y pcre pcre-devel apr apr-devel

  6. 编译安装:make   &&  make install;以上两个步骤都可以使用 echo $? 来检查是否正确执行,否则需要根据错误提示去解决问题。

  7. 修改配置文件;vim /usr/local/apache2/conf/httpd.conf  修改  101(行) 为 ServerName localhost:80   修改行(set nu)

  8. 启动httpd:/usr/local/apache2/bin/apachectl start  (重启restart;加载reload、graceful)(注意防火墙!setenforce 0)

              技术分享

本文出自 “fxq666” 博客,请务必保留此出处http://fxq666.blog.51cto.com/12117109/1882437

以上是关于安装apche服务的主要内容,如果未能解决你的问题,请参考以下文章

安装apche服务

搭建本地apche服务器

linux apche服务

apche服务器在Window和Linux下常用命令

阿里云center7.3 apche2.4.6配置https

安装LAMP服务