사전 체크리스트

  • 포트 설정 확인
    • 6379 기본 redis 포트 확인 → 다음 단계로 진행
  • 방화벽 설정 확인
    • EC2 보안그룹, iptables 확인 6379 port open 확인 → 다음 단계로 진행
  • redis 설치 확인
    • EC2 ubuntu계정 redis-server 명령어 실행

 

체크 리스트 확인 후 docker 내 redis 설치

  • docker 컨테이너 redis 설치
docker exec -it realjeans bash      # realjeans 자리에 컨테이너 name 입력으로 컨테이너 접속
apt-get update -y
apt install redis-server -y
redis-server --daemonize yes

 

 

sudo certbot --nginx

Nginx SSL 설정 중 위 명령어 실행 시 발생 할 수 있는 에러.

 

sudo snap install certbot --classic
이후 

sudo apt-get install python3-certbot-nginx
설치 하지 않아 발생한다.

sudo snap install certbot --classic
설치 시 python이 같이 설치 되는데 nginx와 묶이지 않아 발생하는 것으로 보인다.

 

  • 결론
sudo snap install certbot --classic
sudo apt-get install python3-certbot-nginx

* ubuntu 18.03버전 이하는 sudo apt-get install python-certbot-nginx

+ Recent posts