为了账号安全,请及时绑定邮箱和手机立即绑定

windows linux如何安装多个apache?

windows linux如何安装多个apache?

萧十郎 2019-02-15 15:11:54
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

12345678910cp /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/apache1vi /usr/server/apache1/bin/apachectl#将里面所有的路径为apache的修改为apache1vi /usr/server/apache1/bin/envvars#将里面所有的路径为apache的修改为apache1vi /usr/server/apache1/bin/envvars-std#将里面所有的路径为apache的修改为apache1

2.创建系统启动文件

12345678910111213141516171819202122232425262728293031323334vi /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/apache1exec_prefix=/usr/server/apache1bindir=${exec_prefix}/binsbindir=${exec_prefix}/sbin case "$1" instart)    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;;esacexit 0 cp /usr/server/apache1/bin/apache.sysvinit /etc/rc.d/init.d/httpd1chmod 755 /etc/rc.d/init.d/httpd1chkconfig --add httpd1

3.测试Apache服务

123/etc/init.d/httpd1 startnetstat -ant |grep LISTEN/etc/init.d/httpd1 stop


查看完整回答
反对 回复 2019-03-04
  • 2 回答
  • 0 关注
  • 805 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信