如何管理我的MYSQL數(shù)據(jù)庫(kù)
—— 閱讀:8102次
Mysql數(shù)據(jù)庫(kù)是Linux主機(jī)上使用最為廣泛的一種功能強(qiáng)大的數(shù)據(jù)庫(kù)。您可以通過(guò)Mysql數(shù)據(jù)庫(kù)客戶(hù)端來(lái)進(jìn)行管理,另外,您也可以通過(guò)更加直觀(guān)的PhpMyadmin來(lái)進(jìn)行管理。方法如下:
首先下載PhpMyAdmin軟件,將此文件包解壓
找到其中的一個(gè)文件: config.inc.php(或者如config.*等, 該文件名會(huì)因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ù)庫(kù)用戶(hù)名'; // MySQL user(此項(xiàng)需要設(shè)置)
$cfgServers[1]['password'] = '數(shù)據(jù)庫(kù)密碼'; // MySQL password (only needed with basic auth) (此項(xiàng)需要設(shè)置)
$cfgServers[1]['only_db'] = ''數(shù)據(jù)庫(kù)名稱(chēng)'; // If set to a db-name,...(此項(xiàng)需要設(shè)置)
然后您ftp到您的網(wǎng)站, 在您的網(wǎng)站下建立一個(gè)目錄phpmyadmin, 把phpmyadmin所有文件上傳到該目錄下訪(fǎng)問(wèn)http://'yourdomain.com/phpmyadmin, 即可管理您的數(shù)據(jù)庫(kù)了."
在您建好您的數(shù)據(jù)庫(kù)后, 記得把這些phpadmin的文件移走, 否則便讓任何人都可以管理您的數(shù)據(jù)庫(kù)了.