1. 아래와 같이 tomcat 8에 대한 image 를 내려받습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$ docker pull tomcat:8
8: Pulling from library/tomcat
3e12a4ecg13c: Pull complete
75d44b20a841: Pull complete
a136217a1fa4: Pull complete
8bceb9f57693: Pull complete
268410abd9cf: Pull complete
c4e2fb2d87cf: Pull complete
09123f714a7b: Pull complete
c21de950ce52: Pull complete
9f1d6027a2e7: Pull complete
b712e8d9a90e: Pull complete
8c4ab15d0add: Pull complete
5953d45ec94f: Pull complete
0ba82678ed3b: Pull complete
Digest: sha256:0f12321fd37dcbe2db5f26d16861240c283c774089dd45c9d6008cacb8e8539a
Status: Downloaded newer image for tomcat:8
 
cs



2. docker image 정보를 확인합니다.

1
2
3
4
5
$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
mysql               5.7                 5fac15ab2c34        2 days ago          408MB
tomcat              8                   1269f3761db4        3 weeks ago         560MB
 
cs



3. 아래와 같이 tomcat 을 실행합니다.

1
2
3
$ docker run -d -i -t --name="tomcat8-board" -p 8081:8080 tomcat:8
4cadb567d312a42ba96e04500da758be1231a12359ec67d85082e72b051ea04f
 
cs

* -d: 데몬으로 실행합니다.
* -p 8081:8080: 이미지를 8080으로 실행하지만, 호스트에서 접근 시에 8081로 접근한다는 의미입니다.

* -i: 표준 입력을 활성화하여 컨테이너와 연결되어 있지 않더라도 표준 입력을 유지합니다.



4. docker 프로세스 확인

1
2
3
4
5
$ docker ps -a
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
4cadb567d312        tomcat:8            "catalina.sh run"        11 minutes ago      Up 11 minutes       0.0.0.0:8081->8080/tcp   tomcat8-board
71a53c718465        mysql:5.7           "docker-entrypoint..."   About an hour ago   Up About an hour    0.0.0.0:3316->3306/tcp   mysql
 
cs

* 위의 정보로 미루어 보아 tomcat:8 은 11분 전에 올라온 것을 확인할 수 있습니다.



5. tomcat container 에 적재할 간단한 war 파일을 준비합니다.

1
2
3
$ ll |grep board
-rw------- 1 user user  22929236 Nov  7 15:02 board.war
 
cs



6. 홈 디렉터리 이하에 board.war 파일을 docker tomcat container 에 복사를 합니다.

1
2
$ docker cp ~/board.war tomcat8-board:/usr/local/tomcat/webapps/
 
cs

* ~/board.war : 로컬 호스트에 홈 디렉터리 이하 board.war 파일입니다.

* tomcat8-board : tomcat:8 컨테이너의 이름입니다.

* /usr/local/tmcat/webapps/ : tomcat8 컨테이너의 웹 애플리케이션이 적재될 경로입니다.



7. tomcat container 셸에 연결을 합니다.

1
2
$ docker exec -it 4ca /bin/bash
 
cs

* 4ca 는 4번의 프로세스 확인에서 "CONTAINER ID"에 해당합니다.

* -it 옵션은 표준 입력을 활성화 및 유지하며 셸을 사용한다는 의미입니다.



8. tomcat container 내부에 복사 여부 확인

1
2
3
# dir /usr/local/tomcat/webapps/
ROOT  board  board.war  docs  examples  host-manager  manager
 
cs



9. tomcat container 의 Web UI



10. 웹 브라우저를 통해 접속을 합니다.

* ex) 192.168.10.10:8081/board/board/



'Tools > Docker' 카테고리의 다른 글

docker mysql 설치  (0) 2017.11.07
docker container 재생 및 실행  (0) 2017.11.02
docker 실행 및 옵션  (0) 2017.11.02
docker 접속  (0) 2017.11.02
Docker Toolbox 설치  (0) 2017.10.31


1. 아래와 같이 docker container 에서 mysql 을 실행하기 위한 명령어를 입력합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ docker run -d -p 3316:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=true --name mysql mysql:5.7
Unable to find image 'mysql:5.7' locally
5.7: Pulling from library/mysql
85b1f47fba49: Pull complete
5671503d4f93: Pull complete
3b43b3b913cb: Pull complete
4fbb803665d0: Pull complete
05808866e6f9: Pull complete
1d8c65d48cfa: Pull complete
e189e187b2b5: Pull complete
02d3e6011ee8: Pull complete
d43b32d5ce04: Pull complete
2a809168ab45: Pull complete
Digest: sha256:eb9a3bca021ee178b5a69a2443462d156ff5b3d3f739c516b62d9d902ba49132
Status: Downloaded newer image for mysql:5.7
ae42dd88532a5c7a9fa235171c73ec2e1a95212db986fbd2fb22847716584035
 
cs

* MYSQL_ALLOW_EMPTY_PASSWORD 설정값은 비밀번호 없이 root 계정을 만들기 위해 사용합니다.

* local host 의 포트 3316과 docker container 의 포트 3306이 mapping 되어 있음을 확인할 수 있습니다.



2. 위의 설정을 토대로 docker mysql container 에 접속을 시도해보겠습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$ mysql -u root -p --port 3316 --host 192.168.11.31
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.7.20 MySQL Community Server (GPL)
 
Copyright (c) 2000, 2017, 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>
 
cs

* -u root : 접속하기 위한 계정을 입력합니다. 여기서 접속하기 위한 계정은 root 가 됩니다.

* --port 3316 : 포트를 입력합니다. local host 의 포트를 3316으로 설정했기 때문에 3316으로 접근합니다.

* --host 192.168.11.31 : host ip address 를 입력합니다.



3. 설치 및 접속 후 확인

1
2
3
4
5
6
7
8
9
10
11
mysql> show databases;
+--------------------+
 Database           |
+--------------------+
 information_schema |
 mysql              |
 performance_schema |
 sys                |
+--------------------+
5 rows in set (0.00 sec)
 
cs



'Tools > Docker' 카테고리의 다른 글

docker tomcat 8.5 설치 및 war 적재 후 실행  (0) 2017.11.07
docker container 재생 및 실행  (0) 2017.11.02
docker 실행 및 옵션  (0) 2017.11.02
docker 접속  (0) 2017.11.02
Docker Toolbox 설치  (0) 2017.10.31


1. 재생 및 실행할 컨테이너 목록을 확인합니다.

1
2
3
4
5
6
7
$ docker ps -a
CONTAINER ID        IMAGE                           COMMAND             CREATED             STATUS                           PORTS                                                    NAMES
6cbd98f64315        tomcat:8.5                      "catalina.sh run"   About an hour ago   Up About an hour                 0.0.0.0:8081->8080/tcp                                   tomcat8-board
9c45541de0f7        centos:latest                   "/bin/bash"         2 hours ago         Exited (127) About an hour ago                                                            test
f5ee9e7b31a4        teamlab/pydata-tensorflow:0.1   "/opt/start"        3 days ago          Created                                                                                   quirky_jones
23b119d646f9        teamlab/pydata-tensorflow:0.1   "/opt/start"        3 days ago          Up 15 minutes                    0.0.0.0:6006->6006/tcp, 22/tcp, 0.0.0.0:8888->8888/tcp   fervent_fermi
 
cs

* centos 컨테이너가 약 1시간 전에 종료된 상태이므로 centos 컨테이너로 진행을 해보겠습니다.



2. teamlab/pydata-tensorflow 재시작을 합니다.

1
2
3
$ docker restart 9c4
9c4
 
cs


3. 해당 컨테이너의 상태를 확인합니다.

1
2
3
$ docker ps -a |grep centos
9c45541de0f7        centos:latest                   "/bin/bash"         2 hours ago         Up 43 seconds                                                                test
 
cs

* 실행 전 Exited 상태에서 약 43초 정도에 Up 으로 변경되었음을 확인할 수 있습니다.

* 셸이 실행된 것은 아니므로 다음 단계에서 진행해보겠습니다.



4. 컨테이너로 안으로 접근하기 위해 attach 명령어를 사용합니다.

1
2
3
$ docker attach 9c4
[root@9c45541de0f7 /]#
 
cs



5. centos 컨테이너에서 빠져나옵니다.

1
2
3
# exit
exit
 
cs

* exit 명령어를 사용하거나 "Ctrl + D" 를 통해서도 빠져나올 수 있습니다.



'Tools > Docker' 카테고리의 다른 글

docker tomcat 8.5 설치 및 war 적재 후 실행  (0) 2017.11.07
docker mysql 설치  (0) 2017.11.07
docker 실행 및 옵션  (0) 2017.11.02
docker 접속  (0) 2017.11.02
Docker Toolbox 설치  (0) 2017.10.31


1. docker 이미지를 확인합니다.

1
2
3
4
5
6
7
8
9
10
11
12
$ docker images
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
base_image                  1.0                 f592a52fa392        About an hour ago   722MB
mysql                       5.7                 5fac85ee2c68        2 weeks ago         408MB
ubuntu                      latest              747cb2d60bbe        3 weeks ago         122MB
tomcat                      8                   1269f3761db5        3 weeks ago         560MB
tomcat                      8.5                 1269f3761db5        3 weeks ago         560MB
redis                       latest              1fb7b6c8c0d0        3 weeks ago         107MB
centos                      latest              196e0ce0c9fb        6 weeks ago         197MB
hello-world                 latest              05a3bd381fc2        7 weeks ago         1.84kB
teamlab/pydata-tensorflow   0.1                 7bdf5d7e0191        15 months ago       3.08GB
 
cs

* 위의 목록 중에 ubuntu 이미지를 실행시켜보도록 하겠습니다.


2. run 명령어를 통해 실행을 시키고 그와 동시에 셸로 접속을 합니다.

1
2
3
$ docker run --rm -it ubuntu:latest /bin/bash
root@d21771728837:/#
 
cs

* 각 이미지별로 실행 옵션은 상이할 수 있습니다.

* docker 관련 옵션은 docker --help 명령어를 통해 볼 수 있으며 아래와 같습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
$ docker --help
 
Usage:  docker COMMAND
 
A self-sufficient runtime for containers
 
Options:
      --config string      Location of client config files (default "/home/user/.docker")
  -D, --debug              Enable debug mode
      --help               Print usage
  -H, --host list          Daemon socket(s) to connect to
  -l, --log-level string   Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
      --tls                Use TLS; implied by --tlsverify
      --tlscacert string   Trust certs signed only by this CA (default "/home/user/.docker/ca.pem")
      --tlscert string     Path to TLS certificate file (default "/home/user/.docker/cert.pem")
      --tlskey string      Path to TLS key file (default "/home/user/.docker/key.pem")
      --tlsverify          Use TLS and verify the remote
  -v, --version            Print version information and quit
 
Management Commands:
  config      Manage Docker configs
  container   Manage containers
  image       Manage images
  network     Manage networks
  node        Manage Swarm nodes
  plugin      Manage plugins
  secret      Manage Docker secrets
  service     Manage services
  stack       Manage Docker stacks
  swarm       Manage Swarm
  system      Manage Docker
  trust       Manage trust on Docker images (experimental)
  volume      Manage volumes
 
Commands:
  attach      Attach local standard input, output, and error streams to a running container
  build       Build an image from a Dockerfile
  commit      Create a new image from a container's changes
  cp          Copy files/folders between a container and the local filesystem
  create      Create a new container
  diff        Inspect changes to files or directories on a container's filesystem
  events      Get real time events from the server
  exec        Run a command in a running container
  export      Export a container's filesystem as a tar archive
  history     Show the history of an image
  images      List images
  import      Import the contents from a tarball to create a filesystem image
  info        Display system-wide information
  inspect     Return low-level information on Docker objects
  kill        Kill one or more running containers
  load        Load an image from a tar archive or STDIN
  login       Log in to a Docker registry
  logout      Log out from a Docker registry
  logs        Fetch the logs of a container
  pause       Pause all processes within one or more containers
  port        List port mappings or a specific mapping for the container
  ps          List containers
  pull        Pull an image or a repository from a registry
  push        Push an image or a repository to a registry
  rename      Rename a container
  restart     Restart one or more containers
  rm          Remove one or more containers
  rmi         Remove one or more images
  run         Run a command in a new container
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  search      Search the Docker Hub for images
  start       Start one or more stopped containers
  stats       Display a live stream of container(s) resource usage statistics
  stop        Stop one or more running containers
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  version     Show the Docker version information
  wait        Block until one or more containers stop, then print their exit codes
 
Run 'docker COMMAND --help' for more information on a command.
 
cs



'Tools > Docker' 카테고리의 다른 글

docker mysql 설치  (0) 2017.11.07
docker container 재생 및 실행  (0) 2017.11.02
docker 접속  (0) 2017.11.02
Docker Toolbox 설치  (0) 2017.10.31
docker log 확인  (0) 2017.10.30


1. 도커 이미지 확인합니다.

1
2
3
4
5
6
7
8
9
10
11
12
$ docker images
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
base_image                  1.0                 f592a52fa392        38 minutes ago      722MB
mysql                       5.7                 5fac85ee2c68        2 weeks ago         408MB
ubuntu                      latest              747cb2d60bbe        3 weeks ago         122MB
tomcat                      8                   1269f3761db5        3 weeks ago         560MB
tomcat                      8.5                 1269f3761db5        3 weeks ago         560MB
redis                       latest              1fb7b6c8c0d0        3 weeks ago         107MB
centos                      latest              196e0ce0c9fb        6 weeks ago         197MB
hello-world                 latest              05a3bd381fc2        7 weeks ago         1.84kB
teamlab/pydata-tensorflow   0.1                 7bdf5d7e0191        15 months ago       3.08GB
 
cs



2. 도커 컨테이너 목록을 확인합니다.

1
2
3
4
5
6
7
8
9
$ docker ps -a
CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS                        PORTS                    NAMES
6cbd98f64315        tomcat:8.5                      "catalina.sh run"        29 minutes ago      Up 29 minutes                 0.0.0.0:8081->8080/tcp   tomcat8-board
9c45541de0f7        centos:latest                   "/bin/bash"              About an hour ago   Exited (127) 40 minutes ago                            test
9ee69b720f7a        hello-world                     "/hello"                 3 days ago          Exited (0) 3 days ago                                  stupefied_mahavira
f5ee9e7b31a4        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 days ago          Created                                                quirky_jones
23b119d646f9        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 days ago          Exited (137) 3 days ago                                fervent_fermi
c8114d22183d        mysql:5.7                       "docker-entrypoint..."   3 days ago          Exited (0) 2 days ago                                  mysql
 
cs

* 현재 tomcat:8.5 컨테이너가 실행 중인 상태이므로 접속을 진행해보겠습니다.



3. 아래와 같이 docker exec 명령어를 통해 tomcat 컨테이너에 접속을 하였습니다.

1
2
3
$ docker exec -i -t 6cbd /bin/bash
root@6cbd98f64315:/usr/local/tomcat#
 
cs

* 이외에 컨테이너 접속 방법도 동일하거나 비슷합니다.

* 6cbd 는 tomcat:8.5 컨테이너 ID 로 다른 컨테이너 ID 와 중복되지 않을 경우 전체 길이를 입력하지 않아도 됩니다.



'Tools > Docker' 카테고리의 다른 글

docker container 재생 및 실행  (0) 2017.11.02
docker 실행 및 옵션  (0) 2017.11.02
Docker Toolbox 설치  (0) 2017.10.31
docker log 확인  (0) 2017.10.30
docker image 목록 확인  (0) 2017.10.30




https://www.docker.com/products/docker-toolbox 에 접속합니다.



Next 버튼을 클릭합니다.



Docker Toolbox 를 설치할 경로를 지정한 후 Next 버튼을 클릭합니다.



컴포넌트를 선택한 후 Next 버튼을 클릭합니다.















'Tools > Docker' 카테고리의 다른 글

docker 실행 및 옵션  (0) 2017.11.02
docker 접속  (0) 2017.11.02
docker log 확인  (0) 2017.10.30
docker image 목록 확인  (0) 2017.10.30
docker container 실행 중지  (0) 2017.10.30


1. 도커 컨테이너 로그를 확인하기 전에 컨테이너 목록을 확인합니다.

1
2
3
4
5
6
7
$ docker ps -a
CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS                        PORTS                    NAMES
9ee69b720f7a        hello-world                     "/hello"                 26 minutes ago      Exited (0) 26 minutes ago                              stupefied_mahavira
f5ee9e7b31a4        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 hours ago         Created                                                quirky_jones
23b119d646f9        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 hours ago         Exited (137) 23 minutes ago                            fervent_fermi
c8114d22183d        mysql:5.7                       "docker-entrypoint..."   4 hours ago         Up 4 hours                    0.0.0.0:3306->3306/tcp   mysql
 
cs



2. 아래와 같이 "docker logs [container id]" 명령어를 실행합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$ docker logs 23b
Installed kernelspec python3 in /usr/local/share/jupyter/kernels/python3
[I 02:17:30.472 NotebookApp] Writing notebook server cookie secret to /root/.local/share/jupyter/runtime/notebook_cookie_secret
[I 02:17:30.581 NotebookApp] Serving notebooks from local directory: /notebooks
[I 02:17:30.581 NotebookApp] 0 active kernels
[I 02:17:30.581 NotebookApp] The Jupyter Notebook is running at: http://0.0.0.0:8888/
[I 02:17:30.581 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
WARNING:tensorflow:IOError [Errno 2] No such file or directory: '/opt/conda/envs/ml_python34/lib/python3.4/site-packages/tensorflow/tensorboard/TAG' on path /opt/conda/envs/ml_python34/lib/python3.4/site-packages/tensorflow/tensorboard/TAG
WARNING:tensorflow:Unable to read TensorBoard tag
[I 02:22:32.579 NotebookApp] 302 GET / (172.17.0.1) 1.42ms
[I 03:22:22.845 NotebookApp] 302 GET / (192.168.30.1) 2.61ms
[I 03:23:30.441 NotebookApp] Creating new notebook in
[I 03:23:30.493 NotebookApp] Writing notebook-signing key to /root/.local/share/jupyter/notebook_secret
[I 03:23:31.173 NotebookApp] Kernel started: c28ac959-9718-4017-ae0c-c47dc7a9fe07
[I 03:27:06.448 NotebookApp] Saving file at /Untitled.ipynb
[I 04:35:06.273 NotebookApp] Saving file at /Untitled.ipynb
[I 04:36:51.835 NotebookApp] 302 GET / (172.17.0.1) 1.54ms
[I 04:36:51.866 NotebookApp] Saving file at /Untitled.ipynb
[I 04:36:59.599 NotebookApp] Kernel shutdown: c28ac959-9718-4017-ae0c-c47dc7a9fe07
[W 04:36:59.603 NotebookApp] delete /Untitled.ipynb
[I 04:38:26.615 NotebookApp] Creating new notebook in
[I 04:38:27.467 NotebookApp] Kernel started: 6c3891ba-e08f-4101-9975-437f6c452b58
[I 04:40:27.407 NotebookApp] Saving file at /Untitled.ipynb
[I 04:42:27.403 NotebookApp] Saving file at /Untitled.ipynb
 
cs

* 로그를 확인해보니 에러도 있고 경고도 있고 합니다.

* 트러블 슈팅을 진행하는 데 있어서 로그를 확인하는 습관은 매우 중요하므로 자주 확인하는 것이 좋습니다.



'Tools > Docker' 카테고리의 다른 글

docker 접속  (0) 2017.11.02
Docker Toolbox 설치  (0) 2017.10.31
docker image 목록 확인  (0) 2017.10.30
docker container 실행 중지  (0) 2017.10.30
[알림] The program 'mysql' can be found in the following packages  (0) 2017.10.30


1. 아래와 같이 도커 이미지 목록을 확인합니다. 크게 2가지 방법이 있습니다.

1-1. docker images

1
2
3
4
5
6
7
8
$ docker images
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
mysql                       5.7                 5fac85ee2c68        13 days ago         408MB
ubuntu                      latest              747cb2d60bbe        2 weeks ago         122MB
redis                       latest              1fb7b6c8c0d0        2 weeks ago         107MB
hello-world                 latest              05a3bd381fc2        6 weeks ago         1.84kB
teamlab/pydata-tensorflow   0.1                 7bdf5d7e0191        15 months ago       3.08GB
 
cs



1-2. docker image list

1
2
3
4
5
6
7
8
$ docker image list
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
mysql                       5.7                 5fac85ee2c68        13 days ago         408MB
ubuntu                      latest              747cb2d60bbe        2 weeks ago         122MB
redis                       latest              1fb7b6c8c0d0        2 weeks ago         107MB
hello-world                 latest              05a3bd381fc2        6 weeks ago         1.84kB
teamlab/pydata-tensorflow   0.1                 7bdf5d7e0191        15 months ago       3.08GB
 
cs



'Tools > Docker' 카테고리의 다른 글

Docker Toolbox 설치  (0) 2017.10.31
docker log 확인  (0) 2017.10.30
docker container 실행 중지  (0) 2017.10.30
[알림] The program 'mysql' can be found in the following packages  (0) 2017.10.30
docker CE 삭제  (0) 2017.10.19


1. 실행 중인 도커 컨테이너를 확인합니다.

1
2
3
4
5
6
7
$ docker ps -a
CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS                      PORTS                                                    NAMES
9ee69b720f7a        hello-world                     "/hello"                 12 seconds ago      Exited (0) 10 seconds ago                                                            stupefied_mahavira
f5ee9e7b31a4        teamlab/pydata-tensorflow:0.1   "/opt/start"             2 hours ago         Created                                                                              quirky_jones
23b119d646f9        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 hours ago         Up 3 hours                  0.0.0.0:6006->6006/tcp, 22/tcp, 0.0.0.0:8888->8888/tcp   fervent_fermi
c8114d22183d        mysql:5.7                       "docker-entrypoint..."   3 hours ago         Up 3 hours                  0.0.0.0:3306->3306/tcp                                   mysql
 
cs

* -a 옵션을 사용하지 않을 경우, 이미 실행이 종료된 프로세스는 출력되지 않습니다. 즉, 모든 프로세스를 확인하려면 -a 를 추가합니다.

* container id 가 23b~ 로 시작되는 container 를 중지해보겠습니다.



2. 도커의 컨테이너를 중지할 때, 해당 ID를 입력합니다.

1
2
3
$ docker stop 23b
23b
 
cs

* docker 의 container id 전체 길이는 64자리이지만 다른 container id 와 중복되지만 않으면 다 입력하지 않아도 됩니다. 즉, 1~2자리만 입력해도 실행됩니다.



3. container 가 중지되었는지 확인합니다.

1
2
3
4
5
6
7
$ docker ps -a
CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS                       PORTS                    NAMES
9ee69b720f7a        hello-world                     "/hello"                 6 minutes ago       Exited (0) 6 minutes ago                              stupefied_mahavira
f5ee9e7b31a4        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 hours ago         Created                                               quirky_jones
23b119d646f9        teamlab/pydata-tensorflow:0.1   "/opt/start"             3 hours ago         Exited (137) 2 minutes ago                            fervent_fermi
c8114d22183d        mysql:5.7                       "docker-entrypoint..."   3 hours ago         Up 3 hours                   0.0.0.0:3306->3306/tcp   mysql
 
cs

* 상태를 확인해보면 "Up 3 hours" 에서 "Exited (137) 2 minutes ago" 로 변경된 부분을 확인할 수 있습니다.

* 이후 해당 container 를 삭제하려면 "docker rm [container id]" 와 같습니다.




'Tools > Docker' 카테고리의 다른 글

Docker Toolbox 설치  (0) 2017.10.31
docker log 확인  (0) 2017.10.30
docker image 목록 확인  (0) 2017.10.30
[알림] The program 'mysql' can be found in the following packages  (0) 2017.10.30
docker CE 삭제  (0) 2017.10.19


* 아래와 같은 알림 발생 시

1
2
3
4
5
The program 'mysql' can be found in the following packages:
 * mysql-client-core-5.7
 * mariadb-client-core-10.0
Try: sudo apt install <selected package>
 
cs



* 발생 원인

 : mysql 을 실행하기 위한 패키지가 설치되지 않아 발생되는 것으로 생각됩니다.



* 조치 사항

1. "mysql-server mysql-client" 를 설치합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
$ sudo apt install mysql-server mysql-client
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  libaio1 libevent-core-2.0-5 libhtml-template-perl mysql-client-5.7 mysql-client-core-5.7 mysql-common
  mysql-server-5.7 mysql-server-core-5.7
Suggested packages:
  libipc-sharedcache-perl mailx tinyca
The following NEW packages will be installed:
  libaio1 libevent-core-2.0-5 libhtml-template-perl mysql-client mysql-client-5.7 mysql-client-core-5.7
  mysql-common mysql-server mysql-server-5.7 mysql-server-core-5.7
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
Need to get 18.6 MB of archives.
After this operation, 161 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-common all 5.7.20-0ubuntu0.16.04.1 [15.6 kB]
Get:2 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 libaio1 amd64 0.3.110-2 [6,356 B]
Get:3 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-client-core-5.7 amd64 5.7.20-0ubuntu0.16.04.1 [6,339 kB]
Get:4 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-client-5.7 amd64 5.7.20-0ubuntu0.16.04.1 [1,675 kB]
Get:5 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-server-core-5.7 amd64 5.7.20-0ubuntu0.16.04.1 [7,670 kB]
Get:6 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libevent-core-2.0-5 amd64 2.0.21-stable-2ubuntu0.16.04.1 [70.6 kB]
Get:7 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-server-5.7 amd64 5.7.20-0ubuntu0.16.04.1 [2,708 kB]
Get:8 http://kr.archive.ubuntu.com/ubuntu xenial/main amd64 libhtml-template-perl all 2.95-2 [60.4 kB]
Get:9 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-client all 5.7.20-0ubuntu0.16.04.1 [10.1 kB]
Get:10 http://kr.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-server all 5.7.20-0ubuntu0.16.04.1 [10.2 kB]
Fetched 18.6 MB in 6s (2,949 kB/s)
Preconfiguring packages ...
Selecting previously unselected package mysql-common.
(Reading database ... 215867 files and directories currently installed.)
Preparing to unpack .../mysql-common_5.7.20-0ubuntu0.16.04.1_all.deb ...
Unpacking mysql-common (5.7.20-0ubuntu0.16.04.1) ...
Selecting previously unselected package libaio1:amd64.
Preparing to unpack .../libaio1_0.3.110-2_amd64.deb ...
Unpacking libaio1:amd64 (0.3.110-2) ...
Selecting previously unselected package mysql-client-core-5.7.
Preparing to unpack .../mysql-client-core-5.7_5.7.20-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-client-core-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-client-5.7.
Preparing to unpack .../mysql-client-5.7_5.7.20-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-client-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-server-core-5.7.
Preparing to unpack .../mysql-server-core-5.7_5.7.20-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-server-core-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Selecting previously unselected package libevent-core-2.0-5:amd64.
Preparing to unpack .../libevent-core-2.0-5_2.0.21-stable-2ubuntu0.16.04.1_amd64.deb ...
Unpacking libevent-core-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up mysql-common (5.7.20-0ubuntu0.16.04.1) ...
update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Selecting previously unselected package mysql-server-5.7.
(Reading database ... 216035 files and directories currently installed.)
Preparing to unpack .../mysql-server-5.7_5.7.20-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-server-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Selecting previously unselected package libhtml-template-perl.
Preparing to unpack .../libhtml-template-perl_2.95-2_all.deb ...
Unpacking libhtml-template-perl (2.95-2) ...
Selecting previously unselected package mysql-client.
Preparing to unpack .../mysql-client_5.7.20-0ubuntu0.16.04.1_all.deb ...
Unpacking mysql-client (5.7.20-0ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-server.
Preparing to unpack .../mysql-server_5.7.20-0ubuntu0.16.04.1_all.deb ...
Unpacking mysql-server (5.7.20-0ubuntu0.16.04.1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for systemd (229-4ubuntu21) ...
Processing triggers for ureadahead (0.100.0-19) ...
Setting up libaio1:amd64 (0.3.110-2) ...
Setting up mysql-client-core-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Setting up mysql-client-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Setting up mysql-server-core-5.7 (5.7.20-0ubuntu0.16.04.1) ...
Setting up libevent-core-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Setting up mysql-server-5.7 (5.7.20-0ubuntu0.16.04.1) ...
update-alternatives: using /etc/mysql/mysql.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Renaming removed key_buffer and myisam-recover options (if present)
Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details.
invoke-rc.d: initscript mysql, action "start" failed.
● mysql.service - MySQL Community Server
   Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled)
   Active: activating (auto-restart) (Result: exit-code) since 월 2017-10-30 11:01:37 KST; 6ms ago
  Process: 35712 ExecStartPost=/usr/share/mysql/mysql-systemd-start post (code=exited, status=0/SUCCESS)
  Process: 35711 ExecStart=/usr/sbin/mysqld (code=exited, status=1/FAILURE)
  Process: 35690 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=exited, status=0/SUCCESS)
 Main PID: 35711 (code=exited, status=1/FAILURE)
 
10월 30 11:01:37 user-virtual-machine systemd[1]: Failed to start MySQL Community Server.
10월 30 11:01:37 user-virtual-machine systemd[1]: mysql.service: Unit entered failed state.
10월 30 11:01:37 user-virtual-machine systemd[1]: mysql.service: Failed with result 'exit-code'.
dpkg: error processing package mysql-server-5.7 (--configure):
 subprocess installed post-installation script returned error exit status 1
/bin/df: /mnt/hgfs: Protocol error
                                  Setting up libhtml-template-perl (2.95-2) ...
Setting up mysql-client (5.7.20-0ubuntu0.16.04.1) ...
dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.7; however:
  Package mysql-server-5.7 is not configured yet.
 
dpkg: error processing package mysql-server (--configure):
 dependency problems - leaving unconfigured
Processing triggers for libc-bin (2.23-0ubuntu9) ...
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                          Processing triggers for systemd (229-4ubuntu21) ...
Processing triggers for ureadahead (0.100.0-19) ...
Errors were encountered while processing:
 mysql-server-5.7
 mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
 
cs



2. root 계정의 비밀번호를 입력합니다.



3. root 계정의 비밀번호를 재입력합니다.



4. sudo mysql_secure_installation 명령을 실행합니다.

1
2
3
4
5
6
7
$ sudo mysql_secure_installation
 
Securing the MySQL server deployment.
 
Enter password for user root:
Error: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
 
cs

* docker 를 이용한 mysql 실행이기 때문에 해당 파일이 로컬에 존재하지 않아 에러가 발생하지만 무시합니다.



5. mysql 을 실행합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$ mysql -h127.0.0.1 -uroot
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.20 MySQL Community Server (GPL)
 
Copyright (c) 2000, 2017, 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>
 
cs



'Tools > Docker' 카테고리의 다른 글

Docker Toolbox 설치  (0) 2017.10.31
docker log 확인  (0) 2017.10.30
docker image 목록 확인  (0) 2017.10.30
docker container 실행 중지  (0) 2017.10.30
docker CE 삭제  (0) 2017.10.19

+ Recent posts