今天我們來看看phpmyadmin 配置教程吧,也可以叫做phpmyadmin 安裝吧,安裝我就不說了,你直接到網上下載一個phpmyadmin包解壓到你的站點目錄,就行了.下面我們來看個簡單的例子吧.
安裝目錄:/admin/
好了我們現在打開我們剛才解壓的文件夾找到config.sample.inc.php 把它改名為config.inc.php下面我們就打開這個文件.
找到
$cfg['PmaAbsoluteUri'] = '';
$cfg['EexecTimeLimit'] = ;
我們把$cfg['PamAbsolteUri]設置為你的目錄我的是/admin/目錄,$cfg['EexecTimeLimit'] 我設置為10000
$cfg['PmaAbsoluteUri'] = '/admin/''';
$cfg['EexecTimeLimit'] = 10000;
再找到$cfg['blowfish_secret'] = '';
$cfg['blowfish_secret'] = 'cookie';
找到$cfg['Servers'][$i]['host'] = '' // MySQL hostname or IP address
這裡是設置連接mysql主機的,可以是主機也可以是IP地址.
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
下面再找到.
$cfg['Servers'][$i]['auth_type'] = ''; // Authentication method (valid choices: config, http, HTTP, signon or cookie)
$cfg['Servers'][$i]['user'] = ''; // MySQL user
$cfg['Servers'][$i]['password'] = '';
上面三種什麼意思我就不多說了各位看看我的配置吧.
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (valid choices: config, http, HTTP, signon or cookie)
$cfg['Servers'][$i]['user'] = 'p123456'; // 你的mysql用戶
$cfg['Servers'][$i]['password'] = '******'; 這是你的mysql密碼
好了現在把cofing.inc.php上傳到服務器就OK了.好了寫完了
1045 Access denied for user 'root'@'localhost' (using password: YES)
原因是:
你的phpmyadmin設置了密碼,但是你的密碼與mysql server用戶名與密碼不致我造成的.
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
本站原創轉載請注明出處吧. www.111cn.cn