Ubuntu下(Linux+Apache+MYSQL+PHP, LAMP)環境搭建

來源:互聯網
上載者:User

標籤:php5   mysql   ubuntu   lamp   apache   

最近開始玩PHP,於是試著搭建一下開發環境並做個記錄,以備日後再使用起來方便可查。第一步 確保軟體包是最新的
<span style="font-size: 18px;">sudo apt-get update</span>
      第二步 安裝Apache2
<span style="font-size: 18px;">sudo apt-get install apache2</span>
      安裝之後測試:在瀏覽器中開啟 http://localhost/或者http://127.0.0.1如果出現It works! 則證明apache安裝成功
第二步 安裝MYSQL
<span style="font-size: 18px;">sudo apt-get install mysql-server</span>
     安裝過程中需要設定root密碼
<span style="font-size: 18px;">sudo apt-get install mysql-client</span>
     第三步 安裝PHP
<span style="font-size: 18px;">sudo apt-get install php5</span>
     第四步 其他模組安裝
<span style="font-size: 18px;">sudo apt-get install libapache2-mod-php5</span>
     讓apache、php支援mysql 
<span style="font-size: 18px;">sudo apt-get install libapache2-mod-auth-mysql</span>
<span style="font-size: 18px;">sudo apt-get install php5-mysql</span>
<span style="font-size: 18px;">sudo /etc/init.d/apache2 restart</span>
     GD庫安裝:圖庫,如產生驗證碼,處理圖片都離不開它
<span style="font-size: 18px;">sudo apt-get install php5-gd</span>
     curl擴充安裝:支援ftp,http等等協議。用起來很方便
<span style="font-size: 18px;">sudo apt-get install php5-curl </span>
<span style="font-size: 18px;">sudo /etc/init.d/apache2 restart</span>
     第五步 修改許可權
     由於LAMP大部分操作與/var/www目錄相關,為了方便,修改該目錄的許可權為普通使用者可訪問。
<span style="font-size: 18px;">sudo chmod 777 /var/www/</span>
     第六步 安裝phpmyadminphpMyAdmin 是一個以PHP為基礎,以Web方式架構在網站主機上的MySQL資料庫管理工具,讓管理者可用Web介面管理MySQL資料庫
<span style="font-size: 18px;">sudo apt-get install phpmyadmin</span>
     安裝過程中選擇apache2 
     第七步 將phpmyadmin與apache2建立串連註:www目錄在/var/www,phpmyadmin在/usr/share/phpmyadmin目錄
<span style="font-size: 18px;">sudo ln -s /usr/share/phpmyadmin /var/www</span>
     測試:直接運行http://localhost/phpmyadmin,看有沒有資料庫管理軟體出現輸入使用者名稱和密碼並登入第八步 PHP測試在/var/www目錄下建立檔案test.php
<span style="font-size: 18px;">sudo touch test.php</span>
      並在檔案中寫入:
<span style="font-size: 18px;"><? php     phpinfo();    ?></span>
      儲存此檔案。第九步 測試PHP在瀏覽器中輸入http://localhost/test.php,可以看到PHP的系統資訊。
     以上就完成了ubuntu下的LAMP開發環境配置。






相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.