1. 도커 이미지를 통해 mysql 컨테이너 생성
$ docker run -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password --name mysql_test mysql
-p 3306:3306 : 호스트의 3306포트와 컨테이너의 3306포트를 연결한다. 즉 호스트에 3306포트 접근이 발행하면 해당 컨테이너에 접속이 된다.
-e MYSQL_ROOT_PASSWORD=password : 컨테이너를 생성하면서 환경변수를 지정한다. root계정의 비밀번호를 설정한다.
-name mysql_test : 컨테이너의 이름은 mysql_test로 지정한다.
2. mysql 컨네이너 접속
$ docker exec -it mysql_test bash
3. mysql 접속
docker run에서 설정한 root 계정의 password를 입력하면 mysql 서버에 접속
$ root@03e1724628e8:/# mysql -u root -p
Enter password: password
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.15 MySQL Community Server - GPL
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
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>
'docker' 카테고리의 다른 글
컨테이너 접속시 locale 에러 해결 (0) | 2019.01.04 |
---|---|
Dockerfile 작성 및 이미지 빌드 방법 (0) | 2018.12.28 |
Ubuntu, CentOS에 기본 패키지 설치 (0) | 2018.12.28 |
Failed to get D-Bus connection 에러 해결 (0) | 2018.12.27 |
특정 CentOS 버전 컨테이너 생성하기 (0) | 2018.12.27 |