Answers for "docker command to open mysql"

SQL
0

docker open terminal mysql server

use docker exec with the flag -it:
general structure is:
docker exec -it <container_name> mysql -u<root> -p<password>
Posted by: Guest on May-03-2021
0

how to open mysql in docker

# login into mysql
docker logs mysql1 2>&1 | grep GENERATED # check the automatically generated password of root user, copy it
docker exec -it mysql1 mysql -u root -p # parse and press the Enter key
Posted by: Guest on August-04-2020

Code answers related to "docker command to open mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language