Mysql數(shù)據(jù)庫是Linux主機(jī)上使用最為廣泛的一種功能強(qiáng)大的數(shù)據(jù)庫。您可以通過Mysql數(shù)據(jù)庫客戶端來進(jìn)行管理,另外,您也可以通過更加直觀的PhpMyadmin來進(jìn)行管理。方法如下:
首先下載PhpMyAdmin軟件,將此文件包解壓
找到其中的一個文件: config.inc.php(或者如config.*等, 該文件名會因phpmyadmin版本不同, 而有所差別) 修改以下配置: $cfgServers[1]['host'] = 'localhost'; // MySQL hostname
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[1]['stduser'] = ''; // MySQL standard user settings (this user must have read-only $cfgServers[1]['stdpass'] = ''; // access to the "mysql/user" and "mysql/db" tables)
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication?
$cfgServers[1]['user'] = '數(shù)據(jù)庫用戶名'; // MySQL user(此項需要設(shè)置)
$cfgServers[1]['password'] = '數(shù)據(jù)庫密碼'; // MySQL password (only needed with basic auth) (此項需要設(shè)置)
$cfgServers[1]['only_db'] = ''數(shù)據(jù)庫名稱'; // If set to a db-name,...(此項需要設(shè)置)
然后您ftp到您的網(wǎng)站, 在您的網(wǎng)站下建立一個目錄phpmyadmin, 把phpmyadmin所有文件上傳到該目錄下訪問http://'yourdomain.com/phpmyadmin, 即可管理您的數(shù)據(jù)庫了."
在您建好您的數(shù)據(jù)庫后, 記得把這些phpadmin的文件移走, 否則便讓任何人都可以管理您的數(shù)據(jù)庫了.