XAMPPでセキュリティの設定をするために検索している中、次の記事に行きつきました。
2.2.2. phpMyAdminの設定ファイル(config.inc.php)を編集する
phpMyAdminの設定ファイル「config.inc.php」を書き換えてログインの認証方法を変更します。
「XAMPP」を「C:\xampp」にインストールした場合、設定ファイルは
「C:\xampp\phpMyAdmin\config.inc.php」
にあります。設定ファイルをテキストエディターで開いて、「/* Authentication type and info */」の設定を書き換えます。
●設定ファイル[config.inc.php]
/* 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'] = '';
3行目「$cfg['Servers'][$i]['user'] = 'root';」のユーザーはrootが指定してありますので、4行目「$cfg['Servers'][$i]['password'] = '';」に先ほど設定したパスワード(your_password)を設定しても構いませんが、ファイルにパスワードを保存するのは、セキュリティ上あまりおすすめしませんので、phpMyAdminを開く時に、ログイン認証される設定に変更しましょう。
●config.inc.php
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
2行目 ['auth_type'] を「'config'」から「'cookie'」に変更して下さい。
また3行目 ['user'] の「'root'」は削除「''」して下さい。変更が終わったらファイルを保存します。
この通りに設定して、XAMPPのコントロールパネルを再度起動してみると、
[Apache] Problem detected: Apache Not Found!
14:59:42 [Apache] Disabling Apache buttons
14:59:42 [Apache] Run this program from your XAMPP root directory!
14:59:42 [mysql] Problem detected: MySQL Not Found!
14:59:42 [mysql] Disabling MySQL buttons
14:59:42 [mysql] Run this program from your XAMPP root directory!
14:59:42 [filezilla] Problem detected: FileZilla Not Found!
14:59:42 [filezilla] Disabling FileZilla buttons
14:59:42 [filezilla] Run this program from your XAMPP root directory!
14:59:42 [mercury] Problem detected: Mercury Not Found!
14:59:42 [mercury] Disabling Mercury buttons
14:59:42 [mercury] Run this program from your XAMPP root directory!
14:59:42 [Tomcat] Problem detected: Tomcat Not Found!
14:59:42 [Tomcat] Disabling Tomcat buttons
14:59:42 [Tomcat] Run this program from your XAMPP root directory!
14:59:42 [Tomcat] Problem detected: Required Tool catalina_start.bat Not Found!
14:59:42 [Tomcat] Problem detected: Required Tool catalina_stop.bat Not Found!
14:59:42 [Tomcat] Problem detected: Required Tool catalina_service.bat Not Found!
14:59:42 [main] Starting Check-Timer
14:59:42 [main] Control Panel Ready
というエラーになって、Apache もMySQLもstartできません。
Run this program from your XAMPP root directory!
と記載がありますが、上のとおりコマンドでrootは消していますが、それが原因でしょうか。だとしたら、上の記事ではセキュリティの設定はできないという事でしょうか。記事をみる限りでは、この方法でstartできているのですが、他に設定の方法でミスがありますでしょうか。ご指摘いただきたいです。
宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー