# Generate private key
openssl genrsa -out sphtest.key 1024
# Generate CSR
openssl req -new -key sphtest.key -out sphtest.csr
# Generate Self Signed Key
openssl x509 -req -days 365 -in sphtest.csr -signkey sphtest.key -out sphtest.crt
# Copy the files to the correct locations
cp sphtest.crt /etc/pki/tls/certs
cp sphtest.key /etc/pki/tls/private/sphtest.key
cp sphtest.csr /etc/pki/tls/private/sphtest.csr
'운영체제 > 리눅스' 카테고리의 다른 글
[CentOS] i18n Character Set UTF8로 변경하기 (0) | 2013.02.19 |
---|---|
[CentOS] Nginx+PHP+MySQL 설치 방법 링크 (0) | 2013.02.18 |
[Linux] SSL 인증서 만들기 (0) | 2013.02.08 |
[Linux] 리눅스에서 특정 이름의 프로세스 죽이기 (0) | 2011.12.14 |
[Linux] DNS Round Robin Load Balancing (0) | 2011.11.09 |