반응형

Infra/Docker 3

[Docker Hub] toomanyrequests: You have reached your pull rate limit 에러 해결

CI를 돌릴 때 아래 에러가 뜨면서 실패할 수 있다. Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit Understanding Your Docker Hub Rate Limit | Docker Get a better understanding of your Docker Hub rate limit for container image pull requests, depending on usage type and subscriptio..

Infra/Docker 2023.09.22

[ERROR] Communications link failure (Docker + MySQL + Spring JdbcTemplate 연동 실패) 에러 해결

문제 상황 스프링 환경에서 도커를 이용한 mysql + JdbcTemplate으로 db 연동을 하는 과정에서 아래 에러가 발생했다. Spring 애플리케이션을 실행하는 도중에 히카리풀에서 에러를 뱉으면서 jdbc 연결이 안되는 현상이었다. 에러 메시지는 아래와 같다. com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure ... The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. ... Caused by: java.net.ConnectExcep..

Infra/Docker 2022.04.24

[Docker] 도커와 MySQL을 연동하여 사용하는 방법 (feat. IntelliJ)

우아한테크코스에서 웹과 db를 연동해야 하는 웹 체스 미션이 주어져서 도커를 사용하게 되었다. 도커(docker)는 애플리케이션을 편리하게 구축하고 배포할 수 있도록 기술들을 컨테이너로 관리하는 오픈 소스 플랫폼이다. 도커를 이용하면 사용자들의 로컬에 mysql이 깔려있지 않더라도 도커의 mysql을 이용하여 애플리케이션을 실행시킬 수 있으므로 환경에 구애받지 않고 편리하게 작동할 수 있게 해준다. 미션을 진행하면서 알게 된 도커 사용법을 간단하게 기록하려 한다. docker desktop을 설치하자 아래 홈페이지에서 도커를 설치하자. https://www.docker.com/get-started/ 나는 맥북 m1을 이용중이었기 때문에 빨간 박스로 칠한 부분을 클릭해주었다. docker 환경설정 프로젝트..

Infra/Docker 2022.04.23
반응형