windows linux如何安裝多個apache
2 回答

慕俠2389804
TA貢獻1719條經驗 獲得超6個贊
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 |
- 2 回答
- 0 關注
- 865 瀏覽
添加回答
舉報
0/150
提交
取消