來源:互聯網
上載者:User
關鍵字
mysql
Debian
Wheezy
Apache2
LAMP 是Linux, HTTP://www.aliyun.com/zixun/aggregation/14417.html">Apache, MySQL, PHP的簡寫。 該教程演示了如何在 Debian Wheezy 伺服器上安裝支援 PHP5 和 MySQL 的 Apache2 伺服器。
1.初步說明
在本教程中,我們使用的主機名稱是 server1.example.com,IP位址是 192.168.0.100。 這些設置可能與你的有所不同,所以你需在安裝完成後改回自己正確的IP位址。
2.安裝 MySQL 5
首先我們輸入如下命令安裝 MySQL 5:
apt-get install mysql-server mysql-client
在安裝時,你將被要求提供 MySQL root 使用者密碼,這個密碼是有效的使用者 root@localhost 以及 root@server1.example.com ,所以我們不手動指定一個 MySQL root 密碼:
New password for the MySQL "root" user: <-- yourrootsqlpassword
Repeat password for the MySQL "root" user: <-- yourrootsqlpassword
3.安裝 Apache2
Apache2 可以作為一個Debian套裝軟體,我們輸入如下命令進行安裝:
apt-get install apache2
現在您用瀏覽器直接打開 HTTP://192.168.0.100 ,你可以看到Apache2的預留位置頁面(It works!):
Apache 在 Debian 的預設文件根目錄為 /var/www,設定檔是 /etc/apache2/apache2.conf 。 其他配置存儲在子目錄 / etc/apache2 ,比如 /etc/apache2/mods-enabled(Apache模組),/etc/apache2/sites-enabled (虛擬主機),和 /etc/apache2/ conf.d。