我試圖在phpMyAdmin上以root用戶身份設置登錄權限。具有修飾的三線在我的config.inc.php文件到:'#1045無法登錄到MySQL服務器'無法獲得root權限
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
我有以下的認證和服務器參數:
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'eu-cdbr-azure-north-b.cloudapp.net'; // Replace with value from connection string
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
但是我得到一個#1045錯誤。
任何幫助,將不勝感激,謝謝。
嘗試'$ cfg ['Servers'] [$ i] ['host'] ='localhost';' –
應該指定,phpMyAdmin不在本地主機 – Ian
但它仍然是本地主機 –