惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - Franky
腾讯CDC
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium
量子位
Jina AI
Jina AI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
爱范儿
爱范儿
博客园 - 叶小钗
D
Docker
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss

博客园 - Hicome

CentOS6 安装svn Nagios的配置文件 ZT 创建 PHP 测试页 ZT 命令行手工备份Ubuntu系统的方法 还原Ubuntu系统备份的方法 ZT SHELL编程实例+条件判断总结 ZT DELL服务器结合nagios硬件监控、报警 ZT CentOS下内存使用率查看 ZT swf文件格式解析入门(文件头解析)ZT 怎样压缩swf文件? ZT 使用NDOUtils将Nagios监控信息存入数据库 ZT 电脑自动重启的原因几处理方法 ZT 通过rpm包安装、配置及卸载mysql ZT DVD+R与DVD-R有什么区别 ZT CentOS 卸载apache ZT Trac 下设置发邮件问题 Centos 下PHP的卸载与安装 ZT mysql的一些操作命令 Nginx负载均衡 ZT 【M8】使用的一些小技巧 电话,短信,联系人,音乐等功能
CentOS 5.5安装apache2.2.17 ZT
Hicome · 2011-03-08 · via 博客园 - Hicome

[root@CentOS5 soft]# tar zxvf httpd-2.2.17.tar.gz

[root@CentOS5 soft]# cd httpd-2.2.17

[root@CentOS5 httpd-2.2.17]# ./configure --prefix=/usr/local/apache 

[root@CentOS httpd-2.2.17]# make

[root@CentOS httpd-2.2.17]# make install

[root@CentOS httpd-2.2.17]# make clean

[root@CentOS httpd-2.2.17]# /usr/local/apache/bin/apachectl -l

Compiled in modules:

  core.c

  mod_authn_file.c

  mod_authn_default.c

  mod_authz_host.c

  mod_authz_groupfile.c

  mod_authz_user.c

  mod_authz_default.c

  mod_auth_basic.c

  mod_include.c

  mod_filter.c

  mod_log_config.c

  mod_env.c

  mod_setenvif.c

  mod_version.c

  prefork.c

  http_core.c

  mod_mime.c

  mod_status.c

  mod_autoindex.c

  mod_asis.c

  mod_cgi.c

  mod_negotiation.c

  mod_dir.c

  mod_actions.c

  mod_userdir.c

  mod_alias.c

  mod_so.c

这是安装完的模块

[root@CentOS httpd-2.2.17]# /usr/local/apache/bin/apachectl start 启动

[root@CentOS httpd-2.2.17]# cp /usr/local/apache/bin/apachectl /etc/init.d/httpd

[root@CentOS httpd-2.2.17]# vi /etc/init.d/httpd 

#!/bin/sh

#chkconfig:3 4 5

#description:start and stop the http server

添加以上2行。其实有chkconfig跟下面的description这2个就可以,后面随便写吧。或这样写

#chkconfig:3 4 5

#description:http

这样随便写就可以了。为了chkconfig这上命令

[root@CentOS httpd-2.2.17]#chkconfig --add httpd

[root@CentOS httpd-2.2.17]#service httpd restart

本文出自 “冰鱼客” 博客,请务必保留此出处http://guailele.blog.51cto.com/1156442/469112