phpMyAdmin 嘗試串連到 MySQL 伺服器,但伺服器拒絕串連。您應該檢查設定檔中的主機、使用者名稱和密碼

來源:互聯網
上載者:User

標籤:

需要修改phpmyadmin的設定檔,讓其串連到MySQL資料庫,用記事本開啟 config.inc.php 檔案
 1 <?php 2  3 /* Servers configuration */ 4 $i = 0; 5  6 /* Server: localhost [1] */ 7 $i++; 8 $cfg[‘Servers‘][$i][‘verbose‘] = ‘localhost‘; 9 $cfg[‘Servers‘][$i][‘host‘] = ‘localhost‘;10 $cfg[‘Servers‘][$i][‘port‘] = ‘3306‘;11 $cfg[‘Servers‘][$i][‘socket‘] = ‘‘;12 $cfg[‘Servers‘][$i][‘connect_type‘] = ‘tcp‘;13 $cfg[‘Servers‘][$i][‘extension‘] = ‘mysqli‘;14 $cfg[‘Servers‘][$i][‘auth_type‘] = ‘config‘;15 $cfg[‘Servers‘][$i][‘user‘] = ‘root‘;16 $cfg[‘Servers‘][$i][‘password‘] = ‘‘;17 $cfg[‘Servers‘][$i][‘AllowNoPassword‘] = true;18 19 /* End of servers configuration */20 21 $cfg[‘DefaultLang‘] = ‘en-utf-8‘;22 $cfg[‘ServerDefault‘] = 1;23 $cfg[‘UploadDir‘] = ‘‘;24 $cfg[‘SaveDir‘] = ‘‘;25 26 27 /* rajk - for blobstreaming */28 $cfg[‘Servers‘][$i][‘bs_garbage_threshold‘] = 50;29 $cfg[‘Servers‘][$i][‘bs_repository_threshold‘] = ‘32M‘;30 $cfg[‘Servers‘][$i][‘bs_temp_blob_timeout‘] = 600;31 $cfg[‘Servers‘][$i][‘bs_temp_log_threshold‘] = ‘32M‘;32 33 34 ?>

 

phpMyAdmin 嘗試串連到 MySQL 伺服器,但伺服器拒絕串連。您應該檢查設定檔中的主機、使用者名稱和密碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.