wampserver中的phpmyadmin 連接遠程MySQL數據庫配置

1、打開wampserver下phpmyadmin的目錄在D:\wamp\apps\下      D:\wamp\apps\phpmyadmin4.1.14 

2、找到config.inc.php文件,打開修改要連接的遠程MySQL的host,user和password,更改這3個信息即可

其中必須保證數據庫有被遠程連接的權限

/* Authentication type */
$cfg['Servers'][$i]['verbose'] = 'mysql wampserver';
//$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'admin';
$cfg['Servers'][$i]['password'] = 'root';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '192.168.1.154';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

發佈了28 篇原創文章 · 獲贊 74 · 訪問量 26萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章