본문 바로가기
프로그래밍/암호화

[암호화]openssl 설치

by 소나기_레드 2023. 3. 9.

root 계정으로 설치 진행.

 

1. 설치파일 다운로드
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
또는 www.openssl.org 사이트에 방문하여 최신 파일 다운로드 후 업로드 (문서 작성시 최신 버전 1.0.1c)

 

2. 압축 해제
tar xvzf openssl-1.0.1c.tar.gz

 

3. 압축 해제된 폴더로 이동
cd openssl-1.0.1c

 

4. 설정
./config --prefix=/usr --openssldir=/usr/share/ssl shared

 

5. 설치
make
make test
make install

댓글