發新話題
打印

在 Linux Fedora Core 5 中安裝 phpMyAdmin-2.8.2的方法

在 Linux Fedora Core 5 中安裝 phpMyAdmin-2.8.2的方法

phpMyAdmin 是一個網頁介面的 MySQL 資料庫管理工具,它可以讓資料庫管理工作可以在圖形化介面更方便進行而不必去執行SQL指令。在這裏要介紹的是 phpMyAdmin的 2.8.2版要安裝在 Linux Fedora Core 5 中的方法:

STEP 1:先到 phpMyAdmin的官方網站上去下載最近的 phpMyAdmin程式。
複製內容到剪貼板
代碼:
http://www.phpmyadmin.net/
STEP 2:下載到目前最新的 phpMyAdmin-2.8.2.tar.gz 檔案,則以下列指令解壓縮它成為一個名為 phpMyAdmin-2.8.2的資料夾。
複製內容到剪貼板
代碼:
tar -zxvf phpMyAdmin-2.8.2.tar.gz
STEP 3:將phpMyAdmin-2.8.2的資料夾改名為 phpMyAdmin。
複製內容到剪貼板
代碼:
mv phpMyAdmin-2.8.2 phpMyAdmin
STEP 4:將資料夾 phpMyAdmin複製到網頁的根目錄 /var/www/html下。
複製內容到剪貼板
代碼:
cp phpMyAdmin /var/www/html
STEP 5:將config.default.php 改名為 config.inc.php,並且複製到/var/www/html/phpMyAdmin 目錄中。
複製內容到剪貼板
代碼:
cd /var/www/html/phpMyAdmin/libraries

cp config.default.php /var/www/html/phpMyAdmin/config.inc.php
STEP 6:用文字編輯器 vi 修改 config.inc.php檔案的內容。

輸入 MYSQL使用者名稱及密碼及phpMyAdmin的認證登入方法後,將 config.inc.php檔案存檔。
複製內容到剪貼板
代碼:
$cfg['Servers'][$i]['controluser'] = '';
$cfg['Servers'][$i]['controlpass'] = '';
$cfg['Servers'][$i]['auth_type'] = 'config';

更改成

$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = '1234567';
$cfg['Servers'][$i]['auth_type'] = 'http';
STEP 7:使用 firefox 或 IE網路瀏覽器中輸入下列網址去使用 phpMyAdmin。
複製內容到剪貼板
代碼:
http://www.yourwebsite.com.tw/phpMyAdmin

TOP

發新話題