기본 콘텐츠로 건너뛰기

웹서버 openssl로 인증서 만들기

c:/openssl/bin>openssl req -config d:\apache\server\conf\openssl.cnf -new -out server.csr -keyout server.pem
Loading 'screen' into random state - done
Generating a 1024 bit RSA private key
...............++++++
................++++++
writing new private key to 'server.pem'
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
phrase is too short, needs to be at least 4 chars
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:KR
State or Province Name (full name) [Some-State]:Seoul
Locality Name (eg, city) []:Seoul
Organization Name (eg, company) [Internet Widgits Pty Ltd]:jyblues
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:jyblues.blogspot.kr
Email Address []:

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:



c:/openssl/bin>openssl rsa -in server.pem -out server.key

Enter pass phrase for server.pem:
writing RSA key



c:/openssl/bin>openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 365
Loading 'screen' into random state - done
Signature ok
subject=/C=KR/ST=Seoul/L=Seoul/O=jyblues/CN=jyblues.blogspot.kr
Getting Private key
unable to write 'random state'

댓글

이 블로그의 인기 게시물

bitnami Redmine 백업 및 복원

1. Bitnami 매니저 툴에서 phpMyAdmin으로 접속해서 해당(bitnami_redmine) 데이터베이스를 내보내기합니다(MySQL dump로 자동화 해도 됩니다). 2. \apps\redmine\htdocs\files 폴더에 있는 파일을 압축하여 별도 보관합니다. ** 아래는 참조 내용입니다. 원본 웹사이트 주소 : http://redkim14.blogspot.kr/2016/05/redmine.html Redmine - 레드마인 데이터 백업 및 복원 * Bitnami Redmine 2.6.x 버전을 기준으로 합니다. * 백업  - 레드마인 설치 폴더로 이동  - apps/redmine/htdocs/config/database.yml 파일을 메모장으로 열어 database,    username, password 내용을 확인 합니다.  - 레드마인 설치 루트 폴더에서 use_redmine.bat 실행합니다.  - 커맨드 창에서 mysqldump -u [username] -p [database] > redmine_backup.sql을    입력하고 엔터를 치고 password를 입력합니다.  - redmine_backup.sql 파일로 데이터 베이스가 백업됩니다.  - \apps\redmine\htdocs\files 폴더에 있는 파일을 압축하여 별도 보관합니다. * 복원  - 레드마인 설치 후 설치 폴더로 이동 합니다.  - 데이터 베이스 백업 파일을 레드마인 루트 폴더에 복사합니다.  - \apps\redmine\htdocs\files 폴더에 별도 압축한 파일을 풀어 복사합니다.  - apps/redmine/htdocs/config/database.yml 파일을 메모장으로 열어 database,    username, password 내용을 확인 합니다. ...

WebRTC Janus Gateway Media Server 사용기

이번 프로젝트에 WebRTC Media Server가 필요해서 조사를 진행했다. 조사한 Media Server는 아래와 같다. 1. jitsi meet : https://jitsi.org/jitsi-meet/ 2. janus gateway : https://janus.conf.meetecho.com/ 3. kurento : https://www.kurento.org/ 4. mediasoup : https://mediasoup.org/ 5. medooze : http://www.medooze.com/ 이중에 여러 플랫폼 라이브러리가 필요해서 janus gateway 를 선택하게 되었다.