安装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)

时间: 2024-10-22 16:33:14

安装apche服务的相关文章

linux apche服务

部署apche服务的步骤: 准备环境: 关闭防火墙 :service iptables stop 设置开机关闭防火墙:chkconfig iptables off 关闭selinux :setenforce 0 设置开机关闭selinux :修改配置文件 vim /etc/sysconfig/selinux  将配置文件中 SELINUX = disabled 配置ip地址 安装软件包 yum install httpd 修改配置文件 vim /etc/httpd/conf/httpd.conf

【CNMP系列】CentOS7.0下安装Nginx服务

话步前言,CNMP之路,系统起步:http://www.cnblogs.com/riverdubu/p/6425028.html 这回我来讲解下CentOS7.0下如何安装和配置Nginx服务 Nginx的历史不在此赘述,轻量,快是它的特性.只是因为现在的模块没有达到apache的模块数量级,未来有超越apache的势头. 首先,我们要安装个必要的软件(上节提到过,可能有人并未安装) #yum install wget 因为Nginx以来与gcc的编译环境,所以,在mini centos中需要安

【CNMP系列】CentOS7.0下安装FTP服务

一个小插曲,安装一个FTP服务,便于和远程服务器的文件沟通.后续我们会讲到如何使用Capistrano配合git完成服务器的代码部署以及发布流程.现在,代码先走FTP吧,挺稳. FTP简介 FTP 是File Transfer Protocol(文件传输协议)的英文简称,而中文简称为"文传协议". 在FTP的使用当中,用户经常遇到两个概念:"下载"(Download)和"上传"(Upload)."下载"文件就是从远程主机拷贝文

Linux安装及服务控制

一.  版本 Red Hat 企业版   Red Hat Enterprise Linux (简称RHEL) http://www.redhat.com Fedora社区版 由Red Hat资助的社区维护,定位于个人桌面用户 http://fedoraproject.org CentOS社区版 Community Enterprise Operating System(社区企业操作系统) http://www.centos.org 二.  安装步骤 插入RHEL6安装光盘,引导安装程序 设置主机

红帽linux安装FTP服务

一.系统环境 1.vmware workstation pro安装Linux虚拟机 2.Linux:Linux Red Hat Enterprise Linux 7.0 二.配置本地yum源 1.连接 在wmware workstation pro上点击虚拟机-->设置-->CD/DVD-->使用ISO映像文件-->浏览,找到Linux Red Hat Enterprise Linux 7.0的ISO映像文件,然后确定. 2.配置yum本地源 (1)挂在光盘(ISO映像文件) mk

Centos安装vncserver服务

vnc是一款Windows远程桌面软件,其优点是支持跨操作系统的远程图形化控制.下面开始记录第一次安装vnc服务的过程. 1.先检查系统是否有安装VNC服务 [[email protected] ~]# [[email protected] ~]# rpm -qa | grep tigervnc 2.安装vnc服务 [[email protected] ~]# yum -y install tigervnc-server  //yum安装减少了很多不必要的麻烦 3.启动并设置密码 在第一次启动v

Linux安装FTP服务-----vsftpd

检查是否已经安装vsftpd服务 rpm -qa | grep vsftpd 没有出现 vsftpd-xxx字样表示没有安装 1.下载vsftpd.rpm格式的安装包 redhat5: http://down.51cto.com/data/2221831 其它版本:http://rpmfind.net/linux/rpm2html/search.php?query=vsftpd&submit=Search+... 或者在Linux系统安装文件中也可找到 2.上传vsftpd安装包到Linux目录

centos 安装memcache服务后memcahce本机连接Permission

自己手动在虚拟机下装了下memcache,整个过程真是充满波折,本身用php5.3安装memcache扩展就麻烦很多,无法通过yum直接安装,安装方法详见http://chenwei.me/blog/server/69.html,接下来安装memcache服务,安装成功后,telnet可以成功,不过好像不是立即成功生效,过一会用stats才会有详细显示. 本机用 <?php $mem = new Memcache; $mem->connect(‘192.168.124.129′,11211)

一件自动化安装nagios服务

声明 作者:昨夜星辰 博客:http://yestreenstars.blog.51cto.com/ 本文由本人创作,如需转载,请注明出处,谢谢合作! 目的 一键自动化安装nagios服务. 环境 OS: CentOS 6.2 32 nagios: 4.0.7 nagios-plugins: 2.0.3 nrpe: 2.15 配置 #!/bin/bash # Script Name: One-key Automatic Install Nagios Service # Author: yestr