Contents

조회 수 790 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

0. selinux가 활성화상태인지 확인한다. 활성화상태라면 비활성화하여야 한다.
vi /etc/selinux/config 한 후

SELINUX=disabled

라면 비활성화 상태이다.

 

1. yum install mod_ssl 하여  mod_ssl을 인스톨한다.
=> httpd가 인스톨되어있지 않았을 경우 자동 인스톨된다. 그러나 컴파일되어 인스톨되었다면 uninstall하여 yum으로 인스톨되도록 한다.
 

2. openssl 도 인스톨되어 있는지 확인하고 없으면 인스톨한다.
확인 : yum list installed | grep openssl
인스톨 : yum install openssl

 

3. 공개키, 개인키, 싸인을 생성한다.
# Generate private key 
openssl genrsa -out ca.key 1024

# Generate CSR 
openssl req -new -key ca.key -out ca.csr

# Generate Self Signed Key
openssl x509 -req -days 365 -in ca.csr -signkey ca.key -out ca.crt

 

4.생성된 키파일들을 지정된 위치에 옮긴다.
# Move the files to the correct locations
mv ca.crt /etc/pki/tls/certs
mv ca.key /etc/pki/tls/private/ca.key
mv ca.csr /etc/pki/tls/private/ca.csr

 

5. vi +/SSLCertificateFile /etc/httpd/conf.d/ssl.conf 한 후에,
SSLCertificateFile 항목과 SSLCertificateKeyFile항목을 아래와 같이 설정한다.
SSLCertificateKeyFile /etc/pki/tls/private/ca.key

SSLCertificateFile /etc/pki/tls/certs/ca.crt

 

6. httpd 서비스를 새로 시작한다.
/etc/init.d/httpd restart 


?

  1. [android] 딜레이를 구현하기 위한 꼼수

  2. [android] How can I place app icon on launcher home screen?

  3. [android] Calling activity function from separate class

  4. [Android Error] The number of method references in a .dex file cannot exceed 64K

  5. [android] 레이아웃 사이즈 변경 (동적; programmatically)

  6. [android] 초간단 얼럿 (AlertDialog)

  7. [android] dp, px 서로 변환

  8. [matlab] ZigZag-Scanning (2-D Array)

  9. [matlab] 정보은닉 스테가노그래피(Steganography) 수업

  10. [c] RSA 암호화 구현(gmp 라이브러리 활용)

  11. [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치

  12. [c] 셀프 넘버(Self Number) 구하기

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 71 Next
/ 71