'도커 에러'에 해당되는 글 2건

  1. 2018.09.13 Docker AH00558 에러 1
  2. 2018.06.30 도커 로그인 에러
2018. 9. 13. 18:31

AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message




도커 에러....진짜.....컴터가 그냥 꺼지면....... 컨테이너가 종료 됬다가 다시 시작이 안된다..


구굴에서 아무리 찾아봐도...아파치 설정을 바꾸라는데...


컨테이너가 실행이 되야. 들어가서 설정을 바꾸든지 하는데....


안된다......


결국 찾은 답은,


도커는 새 컨테이너를 만드는게 답이다.


그래서 컨테이너만 실행하면 다 바로 사용할 수있게 세팅이 된 이미지를 commit해서 가지고 있던지,


아니면, 이미지 만드는 Dockerfile에 다 설정을 해놓고, 빌드해서 써야한다.



위 에러가...보니까, 아파치가 계속 실행되고 있어서인데....


그래서 Dockerfile만들때 아파치 자동실행을 끄던지 해야한다.ㅠㅠㅠ

Posted by Tyson
2018. 6. 30. 00:14


docker: Error response from daemon: Get https://registry-1.docker.io/v2/thomasbisignani/docker-apache-php-oracle/manifests/latest: unauthorized: incorrect username or password.



  ~ docker pull hello-world

Using default tag: latest

Error response from daemon: Get https://registry-1.docker.io/v2/library/hello-world/manifests/latest: unauthorized: incorrect username or password



위같은 에러가 떠서 보니까,


도커는 로그인할때, 


이메일에서 @이후꺼는 쓰면 안되네....


분명 이메일 썼을떄 로그인은 됐었는데....


도커에서 pull하려니까, 에러가 뜨길래....


docker login 


을 치고, 밑에처럼 @ 뒤에를 삭제하고 하니까, 되더라.

(아뒤는 예시)


Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.


Username (tyson@yahoo.com): tyson

Password: 

Login Succeeded




Posted by Tyson