CentOS 6.x letsencrypt install
7.x 버전에서는 yum install 로 설치가 됩니다.
그런데 6.x 버전에서는 python 이 2.7 버전대가 아닌 2.6 버전이라서 설치가 안되는 것 같습니다.
아래 처럼 메시지가 뜨면서 진행이 안되네요.
# yum install letsencrypt
...
No package letsencrypt available.
Error: Nothing to do
그래도 구글링해보니 방법은 있더군요.
# yum update
# yum install epel-release
# rpm -ivh https://rhel6.iuscommunity.org/ius-release.rpm
# yum --enablerepo=ius install python27 python27-devel python27-pip python27-setuptools python27-virtualenv
# yum install git
# cd /root
# git clone https://github.com/letsencrypt/letsencrypt
# cd letsencrypt
# ./letsencrypt-auto
7.x 버전에서는 /usr/bin/letsencrypt 파일로 실행되지만
위 처럼 git 로 가져오면 /root/letsencrypt-auto 파일을 실행하면 됩니다.
'LINUX' 카테고리의 다른 글
tar 특정 폴더 제외하고 압축하기 (0) | 2017.04.07 |
---|---|
CentOS 6.x yum repository 문제로 동작이 안될때 (0) | 2017.04.07 |
CentOS 7.x NTP 시간 동기화 (0) | 2017.03.30 |
리눅스 특정 계정만 su 명령어 허용하기 (0) | 2017.03.28 |
리눅스 UNISON 환경설정 (0) | 2017.03.27 |