docker로 띄운 mysql에 접속하여 존재하는 database들을 확인해보고자 했다.
(docker container는 존재하는 상태임)
컨테이너 시작
docker start containerName
컨테이너 접속
docker exec -it containerName bash
참고 : -it는 Interactive Terminal Mode를 뜻한다.
★ mysql 관리자로 접속
mysql -u root -p
그럼 아래와 같이 mysql Password 입력 후에 접속이 완료된다.
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 19
Server version: 8.0.31 MySQL Community Server - GPL
Copyright (c) 2000, 2022, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
완료!
★ 이제 mysql CLI로 사용하면 된다.
databases 확인해보며 마친다.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| order_mgmt |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.01 sec)
반응형