Connect to mysql in a docker container from the host

后端 未结 14 801
青春惊慌失措
青春惊慌失措 2020-11-29 16:25

(It\'s probably a dumb question due to my limited knowledge with Docker or mysql administration, but since I spent a whole evening on this issue, I dare to ask it.)

14条回答
  •  [愿得一人]
    2020-11-29 17:07

    mysql -u root -P 4406 -h localhost --protocol=tcp -p
    

    Remember to change the user, port and host so that it matches your configurations. The -p flag is required if your database user is configured with a password

提交回复
热议问题