1024programmer PHP Connection problem between DockerCompose and PHP, MySQL, nginx

Connection problem between DockerCompose and PHP, MySQL, nginx

I have a problem connecting to the MySQL container.

docker,compose.yml

version: '2'
services:
mysql :
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: JoeyW#1999
MYSQL_DATABASE: wiput
MYSQL_USER: web
MYSQL_PASSWORD: Web#1234
volumes:
- ./mysql:/var/lib/mysql
networks:
- code-network
php:
image: wiput1999/php:latest
volumes:
- ./code :/code
networks:
- code-network
nginx:
image: nginx:latest
ports:
- "80:80"
- "443:443 "
volumes:
- ./code:/code
- ./site.conf:/etc/nginx/conf.d/default.conf
- /etc/letsencrypt:/etc/ letsencrypt
networks:
- code-network
networks:
code-network:
driver: bridge

PHP test script:

<?php
$servername = "localhost";
$username = "root";
$password = "JoeyW#1999";
try {
$cOnn= new PDO("mysql:host=$servername;dbname=wiput", $username, $password);
// set the PDO error mode to exception
$conn->setAttribute(PDO ::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "Connected successfully";
}
catch(PDOException $e)
{
echo "Connection failed: " . $e-> getMessage();
}
?>

This script responds to me:

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

What’s wrong with my code? Because I think this should be fine

If anyone has a better solution, thank you for your help.

Solution:

Change $servername=”localhost “; to $servername = “mysql”;. Your mysql service is not on localhost of your web server container. You should use the name of the service

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/connection-problem-between-dockercompose-and-php-mysql-nginx/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索