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


1. board 프로젝트를 배포해보겠습니다.



2. 해당 프로젝트에 우클릭을 해서 Export > WAR file 을 클릭합니다.



3. 아래와 같이 작성을 한 후 Finish 를 클릭합니다.

* Web Proejct: 해당 프로젝트 이름을 기입합니다.

* Destination: 해당 프로젝트를 WAR 파일로 추출한 후 저장할 경로를 지정합니다.



추출 작업이 완료 후 지정한 경로에 war 파일이 추출되었는지 확인합니다.





* 아래와 같은 에러 발생 시



* 발생 원인

web-app 요소에 반드시 버전을 표기해야만 하므로 발생하는 에러로 web-app 태그에 버전을 명시합니다.



* 조치 사항

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    id="WebApp_ID" version="2.4">
    <display-name>board</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
</web-app>
 
cs

* id="WebApp_ID" 의 부분을 version="2.4" 으로 수정 후 저장합니다.



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

웹 어플리케이션, war 파일 추출  (0) 2017.11.02
[에러] Faceted Project Problem  (0) 2017.10.31


* 아래와 같은 에러 발생 시



* 발생 원인




* 조치 사항

프로젝트에 마우스 우클릭을 해서 Properties를 클릭합니다.



Java Compiler를 클릭하여 Java Compiler 버전을 적절하게 설정하고 Apply 혹은 Apply and Close  버튼을 클릭합니다.



Apply and Close 버튼을 클릭 후 아래와 같은 메세지가 출력되는데 변경 사항을 반영하려면 프로젝트를 다시 빌드해야 한다는 안내 메시지이므로 Yes 버튼을 클릭합니다.






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


* 아래와 같은 에러 발생 시



* 발생 원인

 : 프로젝트 리소스의 변경 사항이 갱신이 되지 않아서 문제가 발생한 것으로 생각됩니다.



* 조치 사항

 : Update Maven Project 창을 열어서 해당 프로젝트를 업데이트합니다.

* Update Maven Project 창의 단축키는 Alt + F5 를 누르면 됩니다.




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