mac攻略(1) -- 簡單配置php開發環境
阿新 • • 發佈:2017-10-16
hub 其中 簡單 redirect 開發環境 nbsp 頁面 安裝mysql 是你 [http://www.cnblogs.com/redirect/p/6112154.html]
最簡單直接的方式還是使用 Mac 上自帶的 Apache 和 PHP。
1.啟動 Apache
1>啟動apache $sudo apachectl start;
2>啟動後,在瀏覽器中輸入 localhost ,可以看到頁面上顯示 It works。(/Library/WebServer/Documents/ 下的 index.html.en 文件)
3>Apache 的默認根目錄是 /Library/WebServer/Documents/
2.添加apache對php的支持
1>打開 http.conf 配置文件:
sudo vim /etc/apache2/httpd.conf
2>找到以下代碼並去掉註釋(去掉前面的‘#’號), wq 保存退出。 LoadModule php5_module libexec/apache2/ libphp5.so
3.重啟 Apache,進行php類型文件的調試
重啟: sudo apachectl restart
在 Apache 的根目錄 /Library/WebServer/Documents/ 下新建project文件夾並寫一個php文件輸出‘hello world‘。此時,在瀏覽器打開 http://localhost/project/test.php 就可以正常看到hello world 了~(如果有權限問題, sudo chown yourname:staff project 其中yourname是你自己的名字)
4.使用homebrew安裝mysql
安裝homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安裝mysql
brew install mysql
啟動mysql
mysql.server start
Apache 常用命令
//啟動 Apache 服務
sudo apachectl start
// 重新啟動 Apache 服務
sudo apachectl restart
// 關閉 Apache 服務
sudo apachectl stop
// 查看 Apache 版本
httpd -v
mac攻略(1) -- 簡單配置php開發環境