前提・実現したいこと
wordpress勉強のため、xamppをインストールしましたが、
phpmyadminへログインしようとするとエラーが出ます。
エラーを解消したいです。
関係ないかもしれませんが、CドライブからDドライブへドキュメントルートを変更しております。
下記ファイルのドキュメントルート変更箇所だけ触りました。
C:\xampp\apache\conf\httpd.conf
backupをとっており、一度元に戻してみましたがエラーは消えませんでした。
発生している問題・エラーメッセージ
試したこと
port番号を3307へ変更してみました。
また、下記ファイルで、rootとパスの再設定してみましたが、何も変わりませんでした。
C:\xampp\phpmyadmin\config.inc.php
/* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'test'; $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'] = 'root'; $cfg['Servers'][$i]['controlpass'] = 'test';
どなたかお詳しい方、ご教示のほどよろしくお願いいたします。
MySQL (mariaDB) 起動してますか?
MySQL 起動してます。
ご指摘いただいて気付いたのですが、MySQLの方でもエラーが出ておりました。。。
[mysql] Problem detected!
[mysql] Port 3306 in use by "Unable to open process"!
[mysql] MySQL WILL NOT start without the configured ports free!
[mysql] You need to uninstall/disable/reconfigure the blocking application
[mysql] or reconfigure MySQL and the Control Panel to listen on a different port
こちらが原因でしょうか?
上記エラーは下記ファイル内を修正することで解消できました。
\xampp\phpMyAdmin\config.inc.php
$cfg['Servers'][$i]['host'] = '127.0.0.1:3307';
ですが、phpmyadminは同じエラーがでたままです。。。
回答1件
あなたの回答
tips
プレビュー