CentOs7 LAMP - 1

Installing LAMP (Linux, Apache, MariaDB, PHP/PhpMyAdmin)



  1. 使用基本配置安裝Apache服務器

  • 安裝Apache提供2.4 httpd服務
    # yum install httpd

  • 使用下面的命令來管理Apache daemon

# systemctl status|start|stop|restart|reload httpd
OR
# service httpd status|start|stop|restart|reload


  • 使用 firewall-cmd,這是透過 firewalld daemon 管理 iptables 的默認命令。
    要在防火牆上應用一致性 iptables 規則使用 -permanent 選項並重新啟動 firewalld 讓服務生效。

# yum install firewalld
# systemctl start firewalld
# firewall-cmd --permanent --add-service=http
# systemctl restart firewalld
  • 驗證 Apache 的功能,打開瀏覽器和使用 HTTP 協議的 URL(HTTP:// SERVER_IP)輸入服務器的 IP 地址,默認的頁面應該出現像下面的截圖。
  • Apache DocumentRoot 路徑設置為 /var/www/html 系統路徑。如果要查看您的 DocumentRoot 路徑的目錄列表,請打開 Apache 歡迎配置文件,並在 <LocationMach> 指令上從 - 到 + on設置 Indexes 語句,以下面的截圖為例。
# vim /etc/httpd/conf.d/welcome.conf
 


  • 關閉存檔文件,重新啟動 Apache 服務反映更改,並重新載入瀏覽器頁面以查看最終結果。 
# systemctl restart httpd
 

  • Apache 觀看版本
# httpd -v
 版本的更新和漏洞,都是安全的一環。定期更新,查看安全漏洞才是好的。


留言

熱門文章