Mac OS X中配置Apache

來源:互聯網
上載者:User

標籤:blog   http   io   os   使用   ar   for   檔案   div   

我使用的Mac OS X版本是10.8.2,Mac內建了Apache環境。

  1. 啟動Apache
  2. 設定虛擬機器主機

 

啟動Apache

開啟“終端(terminal)”,輸入 sudo apachectl -v,(可能需要輸入機器秘密)。如下顯示Apache的版本

 

接著輸入 sudo apachectl start,這樣Apache就啟動了。開啟Safari瀏覽器地址欄輸入 “http://localhost”,可以看到內容為“It works!”的頁面。其位於“/Library(資產庫)/WebServer/Documents/”下,這就是Apache的預設根目錄。

Apache的安裝目錄在:/etc/apache2/,etc預設是隱藏的。有三種方式查看:

  1. dock下右鍵Finder,選擇"前往檔案夾",輸入"/etc"
  2. 在finder下----》前往---》前往檔案夾,然後輸入/etc
  3. 可以在terminal 輸入 "open /etc"

 

設定虛擬機器主機
  1. 在終端運行“sudo vi /etc/apache2/httpd.conf”,開啟Apche的設定檔
  2. 在httpd.conf中找到“#Include /private/etc/apache2/extra/httpd-vhosts.conf”,去掉前面的“”,儲存並退出。
  3. 運行“sudo apachectl restart”,重啟Apache後就開啟了虛擬機器主機配置功能。
  4. 運行“sudo vi /etc/apache2/extra/httpd-vhosts.conf”,就開啟了配置虛擬機器主機檔案httpd-vhost.conf,配置虛擬機器主機了。需要注意的是該檔案預設開啟了兩個作為例子的虛擬機器主機:
    <VirtualHost *:80>    ServerAdmin [email protected]    DocumentRoot "/usr/docs/dummy-host.example.com"    ServerName dummy-host.example.com    ErrorLog "/private/var/log/apache2/dummy-host.example.com-error_log"    CustomLog "/private/var/log/apache2/dummy-host.example.com-access_log" common</VirtualHost><VirtualHost *:80>    ServerAdmin [email protected]    DocumentRoot "/usr/docs/dummy-host2.example.com"    ServerName dummy-host2.example.com    ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log"    CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common</VirtualHost> 

    而實際上,這兩個虛擬機器主機是不存在的,在沒有配置任何其他虛擬機器主機時,可能會導致訪問localhost時出現如下提示:

    ForbiddenYou don‘t have permission to access /index.php on this server

    最簡單的辦法就是在它們每行前面加上#,注釋掉就好了,這樣既能參考又不導致其他問題。

  5. 增加如下配置
    <VirtualHost *:80>    DocumentRoot "/Library/WebServer/Documents"    ServerName localhost    ErrorLog "/private/var/log/apache2/localhost-error_log"    CustomLog "/private/var/log/apache2/localhost-access_log" common</VirtualHost> <VirtualHost *:80>    DocumentRoot "/Users/snandy/work"    ServerName mysites    ErrorLog "/private/var/log/apache2/sites-error_log"    CustomLog "/private/var/log/apache2/sites-access_log" common    <Directory />                Options Indexes FollowSymLinks MultiViews                AllowOverride None                Order deny,allow                Allow from all      </Directory></VirtualHost> 

    儲存退出,並重啟Apache。

  6. 運行“sudo vi /etc/hosts”,開啟hosts設定檔,加入"127.0.0.1 mysites",這樣就可以配置完成sites虛擬機器主機了,可以訪問“http://mysites”了,在10.8之前Mac OS X版本其內容和“http://localhost/~[使用者名稱]”完全一致。
  7. 注意,記錄log的“ErrorLog "/private/var/log/apache2/sites-error_log"”也可以刪掉,但記錄日誌其實是一個好習慣,在出現問題時可以協助我們判斷。如果保留這些log代碼,一定log檔案路徑都是存在的,如果隨便修改一個不存在的,會導致Apache無法服務而沒有錯誤提示,這個比較噁心。

原文地址:http://www.cnblogs.com/snandy/archive/2012/11/13/2765381.html

Mac OS X中配置Apache

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.