lipeng1667 / gitment

0 stars 0 forks source link

【Apache】单台服务器上用Apache的VirtualHost搭建多个Web站点 | KaKa's blog #4

Open lipeng1667 opened 5 years ago

lipeng1667 commented 5 years ago

http://lipeng1667.github.io/2017/06/29/apache-virtualhost-multi-port/

CharlesCSChang commented 5 years ago

1 .如果是在同一個 ServerName 上使用其他的 port e.g. 8080 ,藉此區分站台;可以把 ServerName 改成同一個,另一個 port 則改成 8080 。而且 httpd.conf 要記得再加上 Listen 8080

  1. service httpd restart ( systemctl restart httpd ) 之後,若是出現 error ,可以用 service httpd status ( systemctl status httpd ) 來查詢 httpd 無法啟動的錯誤原因

  2. 如果錯誤原因是 Permission denied: AH00072: make_sock: could not bind to add...:]:8080 ,則可能是 SELinux 安全機制的控管,此時可用 semanage port -m -t http_port_t -p tcp 8080 來賦予 httpd 綁定該 tcp 通訊埠的權限