LoginSignup
0
2

More than 5 years have passed since last update.

MANPのphpMyadminが開けないエラーの対処法(mysqli_real_connect(): (HY000/2002): No such file or directory)

Posted at

phpMyadminを開こうとしたら

mysqli_real_connect(): (HY000/2002): No such file or directory

このようなエラーが出てしまった時の対処法


MAMP/bin/phpMyadmin/config.inc.phpファイルの

config.inc.php
$cfg['Servers'][$i]['connect_type'] = 'tcp';

この部分を

config.inc.php
//$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['connect_type'] = 'socket';
$cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';

に変える。

原因は、「connect_type」が「soket」ではなく、「tcp」になってしまっていたからです。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2