728x90
반응형
728x90
반응형
Docker Install sudo wget -qO- https://get.docker.com/ | sh Docker Version sudo docker -version Image Pull sudo docker pull {image Name} Image Run sudo docker run -it -d {image Name} Container 조회 실행 중인 컨테이너 조회 sudo docker ps 실행 중, 중지 중인 컨테이너 조회 sudo docker ps -a Container Stop sudo docker stop {container Name/Id} Container (Re) Start sudo docker (re)start {container Name/Id} Container Attach sudo..
Docker 도커는 컨테이너 기반의 오픈소스 가상화 플랫폼이다. 즉, 서비스 운영 환경을 묶어서 손쉽게 배포하고 실행하는 경량 컨테이너 기술이다. 다양한 프로그램, 실행환경을 컨테이너로 추상화하고 동일한 인터페이스를 제공하여 프로그램의 배포 및 관리를 단순하게 해준다. 백엔드 프로그램, 데이터베이스 서버, 메시지 큐등 어떤 프로그램도 컨테이너로 추상화할 수 있고 PC, Azure, Google Cloud 등 어디에서든 실행할 수 있다. Container 컨테이너는 이미지를 실행한 상태이다. 이미지로 여러 개의 컨테이너를 만들 수 있다. 컨테이너는 격리된 공간에서 프로세스가 동작하는 기술이다. 가상화 기술의 하나지만 기존 방식과는 차이가 있다. 기존의 가상화 방식은 주로 OS를 가상화했다. VMware, ..
# Monitoring Redis Process Running redis process : Right binary daemon proces running. uptime : We want to make sure the service is not respawning all the time. System Metrics Load : An all-in_one performance metric. A high load will lead to performance degradation. CPU usage : High CPU usage is not a bad thing as long as you don't reach the limit. Memory usage : RAM usage depends on how many ke..