windows linux如何安装多个apache
2 回答
富国沪深
TA贡献1790条经验 获得超9个赞
Windows下安装多个Apache服务:
1.安装好Apache以后,可以在浏览器中输入http://localhost测试;
2.更改第一个站点的根目录:在文件Apache2.2\conf\httpd.conf中查找 DocumentRoot 属性,将后面的路径改为你的主站点的路径,如:D:\www\web1
3.为第二个Apache服务建立配置文件:复制并重命名httpd.conf为web2.conf(举个例子而已,也可以叫my.conf等等),修改web2.conf中的Listen 8080(原来为80)、ServerName localhost:8080(原来为80)、DocumentRoot "D:/www/web2"(原来为web1)
3.添加第二个Apache服务:Apache安装目录的bin子目录下,使用如下命令将Apache安装为Windows NT服务:httpd.exe -k install -n "服务名" -f "d:\apache2.2\conf\web2.conf"
Linux系统下安装多个Apache服务:
1.完整安装一个apache到/usr/server/apache
12345678910 | cp /usr/server/apache /usr/server/apache1 #复制其中一个Apache配置文件 #修改/usr/server/apache/conf/httpd.conf 监听192.168.1.100 #修改/usr/server/apache1/conf/httpd.conf 监听192.168.1.101 ServerRoot为/usr/server/apache1 vi /usr/server/apache1/bin/apachectl #将里面所有的路径为apache的修改为apache1 vi /usr/server/apache1/bin/envvars #将里面所有的路径为apache的修改为apache1 vi /usr/server/apache1/bin/envvars-std #将里面所有的路径为apache的修改为apache1 |
2.创建系统启动文件
12345678910111213141516171819202122232425262728293031323334 | vi /usr/server/apache1/bin/apache .sysvinit #!/bin/sh # # This is a sample /etc/init.d file for apache # # chkconfig: 2345 80 30 # description: apache1 - WWW server prefix= /usr/server/apache1 exec_prefix= /usr/server/apache1 bindir=${exec_prefix} /bin sbindir=${exec_prefix} /sbin case "$1" in start) echo -n "Starting apache1 WWW server:" /usr/server/apache1/bin/apachectl -f /usr/server/apache1/conf/httpd .conf -k start echo -n "" ;; stop) echo -n "Stopping apache1 WWW server:" /usr/server/apache1/bin/apachectl -f /usr/server/apache1/conf/httpd .conf -k stop echo -n "" ;; restart) $0 stop $0 start ;; esac exit 0 cp /usr/server/apache1/bin/apache .sysvinit /etc/rc .d /init .d /httpd1 chmod 755 /etc/rc .d /init .d /httpd1 chkconfig --add httpd1 |
3.测试Apache服务
123 | /etc/init .d /httpd1 start netstat -ant | grep LISTEN /etc/init .d /httpd1 stop |
添加回答
举报
0/150
提交
取消