Not able to connect to mysql container from php container

我们两清 提交于 2021-02-11 18:15:48

问题


I am having 2 docker containers for php app and mysql. Both are working perfectly individually. I can access my php app at localhost:8000 and can connect mysql at localhost:3306 using MySQL Workbench.

But, my php app which is inside the container is not able to connect to the mysql db which is inside another container.

My docker-compose.yml file is as follows:

    version: '3'
    services:
      website:
        container_name: php-app
        image: php-app
        build:
          context: ./
        volumes:
          - php-app:/var/www/html/
        ports:
          - 8000:80
        depends_on:
          - mysql
      mysql:
        image: mysql:8.0
        container_name: mysql-server-80
        command: --default-authentication-plugin=mysql_native_password
        volumes:
          - .:/application
        restart: always
        environment:
          - MYSQL_ROOT_PASSWORD=123456
          - MYSQL_DATABASE=testdb
          - MYSQL_USER=root
          - MYSQL_PASSWORD=123456
        ports:
          - "3306:3306"
    volumes:
      jayde-ci:
      mysql:

My database configuration file inside the codeigniter based php app is as follows:

    $db['default'] = array(
        'dsn'   => '',
        'hostname' => 'mysql',
        'username' => 'root',
        'password' => '123456',
        'database' => 'test',
        'dbdriver' => 'mysqli',
        'dbprefix' => '',
        'pconnect' => FALSE,
        'db_debug' => (ENVIRONMENT !== 'production'),
        'cache_on' => FALSE,
        'cachedir' => '',
        'char_set' => 'utf8',
        'dbcollat' => 'utf8_general_ci',
        'swap_pre' => '',
        'encrypt' => FALSE,
        'compress' => FALSE,
        'stricton' => FALSE,
        'failover' => array(),
        'save_queries' => TRUE
    );

回答1:


You should make password filed blank on localhost. try this

$db['default'] = array(
        'dsn'   => '',
        'hostname' => 'mysql',
        'username' => 'root',
        'password' => '',
        'database' => 'test',
        'dbdriver' => 'mysqli',
        'dbprefix' => '',
        'pconnect' => FALSE,
        'db_debug' => (ENVIRONMENT !== 'production'),
        'cache_on' => FALSE,
        'cachedir' => '',
        'char_set' => 'utf8',
        'dbcollat' => 'utf8_general_ci',
        'swap_pre' => '',
        'encrypt' => FALSE,
        'compress' => FALSE,
        'stricton' => FALSE,
        'failover' => array(),
        'save_queries' => TRUE
    );


来源:https://stackoverflow.com/questions/59503586/not-able-to-connect-to-mysql-container-from-php-container

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!