macOS 10 Install Apache 2 – IT 484 Post author:若雪 Post published:2021-06-07 Post category:IT / Apache Post comments:0 Comments Post last modified:2023-01-13 實作架設 Server ,從套件庫下載安裝,可以大幅地節省工程師開發與部署的時間,使用 brew 來達成,這是最簡單的方法。 Table of Contents Toggle 功能簡介安裝套件macOS 10 Install Apache 2組態設定運行管理啟動服務停止服務狀態驗證測試網址心得分享原碼下載 功能簡介 Apache 2 是一個 Web 伺服器,提供了良好的架構,允許其他人為其撰寫模組,擴充或強化它原本的功能,執行效率快速、可靠並且可通過簡單的API擴充,由於其跨平台和安全性,在網際網路項目中廣泛應用。 安裝套件 macOS 10 Install Apache 2 使用 brew 命令安裝。 brew install httpdCopy 組態設定 這是主要的組態檔,參考此檔案的內容,視需求而調整設定。 ServerRoot # 伺服器根目錄Listen 80 # 監聽 portInclude # 引用其他組態檔DocumentRoot # 網頁根目錄 vim /etc/apache2/httpd.confCopy ServerRoot "/usr" Listen 8080 Include /private/etc/apache2/other/*.conf DocumentRoot "/Library/WebServer/Documents"Copy 運行管理 啟動服務 安裝完成後,並不會自動啟動服務,使用 brew services start 命令來啟動服務。 brew services start httpdCopy 停止服務 啟動服務後,使用 brew services stop 命令終止服務運行。 brew services stop httpdCopy 狀態驗證 Install Apache 2 macOS 啟動服務後,使用 brew services info 命令來啟查看服務狀況。 brew services info httpdCopy httpd (homebrew.mxcl.httpd) Running: v Loaded: v Schedulable: x User: admin PID: 819Copy 測試網址 http://localhost 此頁面表示服務工作正常。它還包括有關重要服務文件和目錄位置的一些基本訊息,該服務已安裝並運行,現在可以使用不同的 brew services 命令來管理該服務。 心得分享 macOS Install Apache 2 快速安裝後,便於個人電腦、筆電在開發研究或測試時使用,省略複雜的設定,所以沒有參數需要調整,簡單快速建置就能使用服務,除此之外還有平台: Centos 7 安裝 Apache 2 原碼下載 GitHub - ruoxueorg Tags: apache 2, mac, macos Read more articles Previous PostCentOS 7 Install Apache 2 – IT 484 Next PostmacOS 10 Install MongoDB standalone 單機模式 – IT 484 You Might Also Like Centos 7 Install Redis sentinel 哨兵模式 – IT 484 2021-01-10 Bash Arrays – Bash 460 2023-01-18 Bash Functions – Bash 460 2023-01-25 發佈留言 取消回覆CommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) 在瀏覽器中儲存顯示名稱、電子郵件地址及個人網站網址,以供下次發佈留言時使用。