資源描述:
《phpmyadmin使用教程》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、phpMyAdmin教程#1phpMyAdmin教程先下載一份最新版的phpMyAdminMYSQL管理器。解壓后得到一個(gè)phpMyAdmin的目錄(你可以改名)找到目錄里的config.inc.php文件,打開找到$cfg['PmaAbsoluteUri']修改你將上傳到空間的phpMyAdmin的網(wǎng)址如:$cfg['PmaAbsoluteUri']='http://www.XXX.com/phpmyadmin/';還有下面的$cfg['Servers'][$i]['host']='localhost';(通常用默
2、認(rèn),也有例外)$cfg['Servers'][$i]['auth_type']='config';//Authenticationmethod(config,httporcookiebased)?在自己的機(jī)子里調(diào)試用config,如果在網(wǎng)上用cookie。$cfg['Servers'][$i]['user']='root';//MySQLuser(用戶名,自己機(jī)里用root,在網(wǎng)上設(shè)你的ftp用戶名)$cfg['Servers'][$i]['password']='';//MySQLpassword(onlyneed
3、ed自己機(jī)里不用設(shè)$cfg['Servers'][$i]['only_db']='';//Ifsettoadb-name,only(你只有一個(gè)數(shù)據(jù)就設(shè)置一下)還有設(shè)$cfg['DefaultLang']='zh';設(shè)置完畢可以上傳到網(wǎng)上了。其實(shí)在使用的實(shí)際過程中,以上的方法并不是適合在網(wǎng)絡(luò)上使用的。其實(shí)實(shí)際設(shè)置下面幾項(xiàng)就可以了:$cfg['blowfish_secret']='1';(設(shè)置為相應(yīng)數(shù)字,好像表示為一個(gè)開關(guān)。使用某種登陸機(jī)制的問題。好像和php系統(tǒng)的設(shè)置也有一些關(guān)系)$cfg['Servers'][$i]
4、['host']='mysql.home.shangdu.net';(設(shè)置你的mysql數(shù)據(jù)庫主機(jī)地址,這是必須的。)$cfg['Servers'][$i]['auth_type']='cookie';(設(shè)置用戶登錄的模式,在網(wǎng)絡(luò)上的話使用http或者cache)$cfg['ServerDefault']=1;(如果你要管理登陸多個(gè)mysql數(shù)據(jù)庫的話,你需要把它設(shè)置為0。并且設(shè)置不止一個(gè)$cfg['Servers'][$i]['host'])修正備忘一下留用#2一、概述: phpMyAdmin是一套以php3寫成
5、,針對MySQL資料庫系統(tǒng)的Web管理界面。它可以很方便地以圖形化界面,來對MySQL資料庫內(nèi)之資料做增刪的做動(dòng),更可以做資料庫本身的增刪管理;另外附帶的好處是,您也可以籍著這個(gè)界面來學(xué)習(xí)SQL正確的語法。二、資源:作業(yè)環(huán)境:RedHat6.0+CLE0.8p1網(wǎng)路資源:瑞琦資訊工作室phpMyAdmin交流討論區(qū)三、安裝取得原始檔。將原始檔解壓縮到Web伺服器的文件根目錄tarzvxfphpMyAdmin_2.0.5.tar.gz-C/home/httpd/html 變換到phpMyAdmin的目錄底下cd/hom
6、e/httpd/html/phpMyAdmin修改設(shè)定檔config.inc.php3:將原來的設(shè)定$cfgServers[1]['host']='';//MySQLhostname$cfgServers[1]['port']='';//MySQLport-leaveblankfor defaultport$cfgServers[1]['adv_auth']=false;//Useadvancedauthentication?$cfgServers[1]['stduser']='';//MySQLstandardus
7、er(onlyneededwithadvancedauth)$cfgServers[1]['stdpass']='';//MySQLstandardpassword(onlyneededwithadvancedauth)$cfgServers[1]['user']='';//MySQLuser(onlyneededwithbasicauth)$cfgServers[1]['password']='';//MySQLpassword(onlyneededwithbasicauth)$cfgServers[1]['onl
8、y_db']='';//Ifsettoadb-name,onlythisdbisaccessible$cfgServers[1]['verbose']='';//Verbosenameforthishost-leaveblanktoshowthehostname::require("english.inc.php3");修改成$cfgServe