Windows XP 32 비트를 실행 중입니다.
방금 다음 URL에서 Openssl을 다운로드하여 설치했습니다. http://www.slproweb.com/products/Win32OpenSSL.html
그런 다음 다음 명령을 사용하여 자체 서명 인증서를 만들려고했습니다.
openssl req -x509 -days 365 -newkey rsa:1024 -keyout hostkey.pem -nodes -out hostcert.pem
그런 다음 다음과 같은 오류가 발생하기 시작했습니다.
/usr/local/ssl/openssl.cnf에서 구성 정보를로드 할 수 없습니다.
그런 다음 언젠가 인터넷 검색 후 위의 명령을 다음과 같이 변경했습니다.
openssl req -config C:\OpenSSL\bin\openssl.conf -x509 -days 365 -newkey rsa:1024 -keyout hostkey.pem -nodes -out hostcert.pem
하지만 이제 명령 프롬프트에서 다음 오류가 발생합니다.
C : \ OpenSSL \ bin \ openssl.conf의 라인 -1에
오류가 있습니다. 4220 : error : 02001002 : system library : fopen : No such file or directory :. \ crypto \ bio \ bss_file.c : 126 : fopen ( 'C : \ OpenSSL \ bin \ openssl.conf ','rb ') 4220 : error : 2006D080 : BIO routines : BIO_new_file : no such file :. \ crypto \ bio \ bss_file.c : 129 :
4220 : error : 0E078072 : configuration file routines : DEF_LOAD : 해당 파일 없음 :. \ crypto \ conf \ conf_def.c : 197 :
도와주세요. 미리 감사드립니다.