之前在 Debian 裡試裝了 Apache 及 PostgreSQL,也安裝了 WordPress 試用了一陣子,同時也簡單記錄了 "在 Debian 上安裝 Apache + PHP + PostgreSQL" 及 "如何安裝 WordPress?" 這兩篇文章。
這陣子因為還計畫試用一些其它的架站套件,因此也就繼續在 Debian 及 Linux Mint 裡安裝了 MariaDB,這篇是簡易的記錄。
目前 MariaDB 尚未收到 Debian 7 及 Linux Mint 15 的套件庫裡,所以必須從 MariaDB 的網站取得安裝程式。
在 MariaDB 的網站的下載頁面,選擇使用 repository configuration tool,依據說明選擇 Linux Distribution、版本及套件庫來源。
在 Debian 7 安裝 MariaDB 5.5:
$ sudo apt-get install python-software-properties $ sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db $ sudo add-apt-repository 'deb http://download.nus.edu.sg/mirror/mariadb/repo/5.5/debian wheezy main' $ sudo apt-get update $ sudo apt-get install mariadb-server
在 Linux Mint 15 安裝 MariaDB 5.5:
首先,建立 /etc/apt/sources.list.d/mariadb.list 這個檔案,並加入以下內容:
# MariaDB 5.5 repository list - created 2013-08-16 01:23 UTC # http://mariadb.org/mariadb/repositories/ deb http://ftp.yz.yamagata-u.ac.jp/pub/dbms/mariadb/repo/5.5/ubuntu raring main deb-src http://ftp.yz.yamagata-u.ac.jp/pub/dbms/mariadb/repo/5.5/ubuntu raring main
接著,執行以下的指令:
$ sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db $ sudo apt-get update $ sudo apt-get install software-properties-common $ sudo apt-get install mariadb-server
安裝 Apache 與 PHP
$ sudo apt-get install apache2 php5 php5-mysql libapache2-mod-php5filter
基本上,安裝完這些套件就可以用了。
此外,建議再安裝幾個與 PHP 相關的套件:
$ sudo apt-get install php5-curl php5-gd php5-gmp php5-imagick php5-json php5-mcrypt php5-xdebug php5-xmlrpc
然後在 /var/www 路徑下編寫一個 info.php 檔,內容如下:
<?php phpinfo(); ?>
用瀏覽器開啟 http://localhost/info.php 查看 PHP 是否順利安裝。
安裝 phpMyAdmin
到 http://www.phpmyadmin.net/ 下載最新版的 phpMyAdmin,將它解壓縮到 /var/www 目錄後,並修改屬性權限裡的使用者為 www-data,然後將 config.sample.inc.php 複製成 config.inc.php。
接著,編輯 config.inc.php,找到這一行:
$cfg['Servers'][$i]['auth_type'] = 'cookie';
將它修改如下:
$cfg['Servers'][$i]['auth_type'] = 'http';
這是最基本的設定,其它設定請自行參閱 phpMyAdmin 的說明文件。
沒有留言:
張貼留言