XamppでMySQLに接続できませんこのエラーがあります:
MySQLによると:ドキュメント
1045-ユーザー 'root' @ 'localhost'のアクセスが拒否されました(パスワードを使用:NO)
mysqli_real_connect():(HY000/1045):ユーザー 'root' @ 'localhost'のアクセスは拒否されました(パスワード:NOを使用)phpMyAdminはMySQLサーバーに接続しようとしましたが、サーバーは接続を拒否しました。構成内のホスト、ユーザー名、パスワードを確認し、それらがMySQLサーバーの管理者から提供された情報に対応していることを確認する必要があります。
CONFIG.INC.PHPファイル
<?php
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
/* Bind to the localhost ipv4 address and tcp */
$cfg['Servers'][$i]['Host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = '';
/* Advanced phpMyAdmin features */
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
$cfg['Servers'][$i]['relation'] = 'pma__relation';
$cfg['Servers'][$i]['table_info'] = 'pma__table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma__column_info';
$cfg['Servers'][$i]['history'] = 'pma__history';
$cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords';
$cfg['Servers'][$i]['tracking'] = 'pma__tracking';
$cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
$cfg['Servers'][$i]['recent'] = 'pma__recent';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
$cfg['Servers'][$i]['users'] = 'pma__users';
$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
$cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
$cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
$cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
$cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
$cfg['Servers'][$i]['favorite'] = 'pma__favorite';
/*
* End of servers configuration
*/
?>
解決策を見つけたので、変更したばかりの設定ファイルで
$cfg['Servers'][$i]['auth_type'] = 'config';
に
$cfg['Servers'][$i]['auth_type'] = 'HTTP';
/* Authentication type and info */
$cfg['Servers'][$i]['password'] = '';<----your password
または
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = '';
に
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'your user';
$cfg['Servers'][$i]['controlpass'] = 'your password';
config-db.php
を変更し、ユーザーに与えたパスワードにパスワードを設定する必要がありますroot、またはこの''
としてパスワードが残されていない場合。
次の手順に従います。1. config.inc.phpファイルに移動して検索します-$ cfg ['Servers'] [$ i] ['auth_type']
2. $ cfg ['Servers'] [$ i] ['auth_type']の値を'cookie'または'http'に変更します=。
3. $ cfg ['Servers'] [$ i] ['AllowNoPassword']を見つけ、その値をtrueに変更します。
ログインしたいときはいつでも、ユーザー名としてrootを入力し、パスワードをスキップして送信ボタンを押してください。
注- Cookieとして認証タイプを選択した場合、ブラウザを閉じて再度開くたびに、再度ログインする必要があります。
ファイルを編集しますxampp/mysql/bin/my.ini
追加
skip-grant-tables
下 [mysqld]
メッセージが求めていることを行うだけで、パスワードなしでphpMyAdminパネルにユーザーpma @ localhostを作成します。
前述の解決策がどれもうまくいかない場合は、単純に変更を加えてください。これを変える
$cfg['Servers'][$i]['Host'] = '127.0.0.1';
に
$cfg['Servers'][$i]['Host'] = 'localhost';
そして
$cfg['Servers'][$i]['auth_type'] = 'config';
に
$cfg['Servers'][$I]['auth_type'] ='cookies';
それは私の状況で機能し、おそらくあなたの状況でも機能します。
しゅう
の値を変更する
$cfg['Servers'][$i]['user'] = 'groot';
$cfg['Servers'][$i]['password']='groot';
あなたの~/xampp/phpMyAdmin/config.inc.php
ここで私のユーザー名はgrootであり、パスワードはgrootです。
この回答を書いている時点で、私はこの問題を抱えていたので、あなたの質問を調べて修正しました。
これは異なるソリューションです。サービスが正しく実行されているか、WAMPアイコンがオレンジ色で表示され、3つのうち2つのサービスが実行されているかどうかを確認すると、このソリューションが機能します。根本的な原因:
システムにmysqlがあり、後でWAMPをインストールした場合、1つのMYSQLがWAMPパッケージとしてインストールされます。MYSQLのデフォルトポートは3306です。したがって、両方のmysqlでポートは3306になり、ポートの競合になります。それは正常に動作します。ポートを変更する手順。