Ubuntu上搭建 Apache + PHP + MySQL 環境

來源:互聯網
上載者:User

1. 安裝測試apache包

1.1 安裝apache包

sudo apt-get install apache2

1.2. 啟動並測試apache環境

sudo /etc/init.d/apache2 start訪問http://localhost,可以看到頁面有“It works!”的提示。

2. 安裝測試php相關包

2.1 安裝php相關包

sudo apt-get install php5-cli php5-dev libapache2-mod-php52.2. 測試apache+php環境,在/var/www/目錄下建立一個test.php檔案,內容如下:

<?php<br />phpinfo();<br />?>2.3 重新啟動apache2

sudo /etc/init.d/apache2 restart訪問http://localhost/test.php,可以看到apache和php的環境資訊.

3. 安裝測試mysql及相關包

3.1 安裝mysql相關包

sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql3.2 測試mysql,通過以下命令登入mysql

$mysql -u <username> -p<password>3.3 測試apache+php+mysql

3.3.1 重新啟動apache2

sudo /etc/init.d/apache2 restart3.3.2 在/var/www/目錄下建立一個testdb.php檔案,內容如下:

<?php<br />$conn=mysql_connect("localhost", "root", "mysql", "mysql");<br />if (!$conn) {<br />echo("Unable to connect to database.");<br />} else {<br />echo("Connect to database successful.");<br />}<br />mysql_close($conn);<br />?>3.3.3 訪問http://localhost/testdb.php,如果看到“Connect to database successful.”說明apache+php+mysql的環境搭建成功。

相關文章

聯繫我們

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