Nuke Olaf - Log Store

PHP Warning: mysqli::__construct(): (HY000/2002): No such file or directory 본문

Language/[PHP]

PHP Warning: mysqli::__construct(): (HY000/2002): No such file or directory

NukeOlaf 2020. 2. 9. 05:14

php 파일에서 mysqli 에 연결할때, localhost 를 127.0.0.1 로 변경하면 해결된다.

// MySQL 데이터베이스 접속
$host = '127.0.0.1';
$user = 'root';
$pw = 'root-password';
$dbname = 'test_db';

// Create connection
$conn = new mysqli($host, $user, $pw, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}else {
}
Comments