Contents

Views 783 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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 


?

List of Articles
No. Category Subject Author Date Views
405 Etc [link] 유용한 사이트 링크. hooni 2013.08.19 71450
404 System/OS [linux] /etc/fstab 설정 방법.. ㅋㅋ hooni 2013.04.23 12081
403 System/OS [linux] apache, php, jsp 환경설정하기.. hooni 2003.04.23 15232
402 System/OS [linux] APM(apache, php, mysql) + gd 설치순서.. hooni 2003.04.23 18851
401 System/OS [linux] awk 명령어 hooni 2014.03.11 4955
400 System/OS [linux] CentOS 6.5 에서 "Bringing up interface eth0: Determining if ip address 121.78.127.197 is already in use for device eth0..." hooni 2014.04.05 4838
399 System/OS [linux] CentOS 6.x Cati 설치 (yum) hooni 2014.01.17 48594
398 System/OS [linux] CentOS Apache Httpd에 https 적용 hooni 2014.03.05 4480
» Develop [linux] CentOS Apache 웹서버에 HTTPS 적용 hooni 2015.10.23 783
396 System/OS [linux] CentOS 에 APM 설치하기 hooni 2015.01.02 1688
395 System/OS [linux] CentOS 터미널 언어 설정(한글/영어) hooni 2013.12.22 18513
394 Develop [linux] crond 사용법.. ㅋㅋ hooni 2013.04.23 7246
Board Pagination Prev 1 ... 60 61 62 63 64 65 66 67 68 69 ... 98 Next
/ 98