Home  >  Article  >  Backend Development  >  Solution to the error Connection failed SQLSTATE when php uses pdo connection, pdosqlstate_PHP tutorial

Solution to the error Connection failed SQLSTATE when php uses pdo connection, pdosqlstate_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:11:34821browse

php uses pdo connection to report error Connection failed SQLSTATE solution, pdosqlstate

The example in this article describes the solution to the problem of php pdo_mysql connection error Connection failed: SQLSTATE[HY000] [2002] No such file or directory. Share it with everyone for your reference. The specific method is as follows:

Error description:

Connection failed: SQLSTATE[HY000] [2002] No such file or directory

Environment Overview:
MacOS
Development environment apache mysql php built by xampp
xampp has supported mysql oracle, the test is ok, and phpinfo has shown that it supports pdo_mysql pdo_pgsql pdo_sqlite

Among them, I used brew package management to install mysql into the machine, not the mysql that comes with xampp

php pdo connection error Connection failed: SQLSTATE[HY000] [2002] No such file or directory

At first I thought that the file could not be found because of url rewrite, (because I switched from nginx to apache) but the tracking program found that the new pdo error was reported

After searching some information, I found:

This is the wrong mysql.sock path specified by pdo_mysql.default_socket in the php.ini configuration file
My mysql.sock file is in /private/tmp/mysql.sock

So set:

Copy code The code is as follows:
pdo_mysql.default_socket=/private/tmp/mysql.sock

If you don’t know where your mysql.sock is, you can search for it (because the compilation and installation are different from the installation locations of package management tools such as yum, apt-get, or brew)
sudo find / -name 'mysql.sock'
Here are the official bug fixes

1. Open up php.ini (mine was in /private/etc/)
2. locate this line: pdo_mysql.default_socket=/var/mysql/mysql.sock
3. Change the line to: pdo_mysql.default_socket=/tmp/mysql.sock
4. Restart apache

1. I need to add here that if it is a new system or someone who has just started playing PHP, the php.ini file does not exist in the Mac system.
2. Need to cp php.ini.default
in the /private/etc/ directory php.ini, and then modify it
3. But if you use xampp mysql as the database, you don’t need to use the official step 2, just write the following method.

Copy code The code is as follows:
pdo_mysql.default_socket=/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock


Solution three:
Copy code The code is as follows:
sudo vim /etc/php.ini

Set the following three originally blank values ​​to:
Copy code The code is as follows:
/tmp/mysql.sock
mysql.default_socket = /tmp/mysql.sock
pdo_mysql.default_socket= /tmp/mysql.sock
mysqli.default_socket =/tmp/mysql.sock


All modified
Use
after modification is completed
Copy the code The code is as follows:
sudo /usr/sbin/apachectl restart

Problem solved!

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/928229.htmlTechArticlephp uses pdo connection error Connection failed SQLSTATE solution, pdosqlstate This article describes the example of php pdo_mysql connection error Connection failed: SQLSTATE[HY000] [2002] No such file...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn