Apache服务器CentOs内网配置
tar -zxvf httpd-2.2.4.tar.gz
cd httpd-2.2.4
./configure --prefix=/usr/local/apache --enable-module=most --enable-rewrite --enable-shared=max --enable-so
### 其中 --prefix=/usr/local/apache 是设置安装的目录
make
make install
make clean
cd /usr/local/apache
bin/apachectl start 启动web服务
bin/apachectl stop 停止web服务
cp bin/apachectl /etc/init.d/httpd
/etc/init.d/httpd restart
cd httpd-2.2.4
./configure --prefix=/usr/local/apache --enable-module=most --enable-rewrite --enable-shared=max --enable-so
### 其中 --prefix=/usr/local/apache 是设置安装的目录
make
make install
make clean
cd /usr/local/apache
bin/apachectl start 启动web服务
bin/apachectl stop 停止web服务
cp bin/apachectl /etc/init.d/httpd
/etc/init.d/httpd restart
apache设为linux服务
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
vi /etc/init.d/httpd
vi /etc/init.d/httpd
在在#!/bin/sh后面加入下面两行
#chkconfig:345 85 15
#description: Start and stops the Apache HTTP Server.
#chkconfig:345 85 15
#description: Start and stops the Apache HTTP Server.
chmod x /etc/rc.d/init.d/httpd
chkconfig --add httpd
=======================================
如果出现下面的错误:
httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.60.29 for ServerName
(13)Permission denied: Error retrieving pid file run/httpd.pid
Remove it before continuing if it is corrupted.
(13)Permission denied: Error retrieving pid file run/httpd.pid
Remove it before continuing if it is corrupted.
解决方式是:
vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80
#ServerName www.example.com:80
ServerName localhost:80
相关推荐
Junzizhiai 2020-10-10
LzHeng 2020-07-04
Kafka 2020-09-18
Wepe0 2020-10-30
杜倩 2020-10-29
windle 2020-10-29
minerd 2020-10-28
mengzuchao 2020-10-22
bxqybxqy 2020-09-30
风之沙城 2020-09-24
kingszelda 2020-09-22
大唐帝国前营 2020-08-18
yixu0 2020-08-17
TangCuYu 2020-08-15
xiaoboliu00 2020-08-15
songshijiazuaa 2020-08-15
xclxcl 2020-08-03
zmzmmf 2020-08-03
newfarhui 2020-08-03