We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
레지스트리 컨테이너 인증서 생성 과정중에서 openssl x509 -req -in ./certs/domain.csr -CA ./certs/ca.crt -CAkey ./certs/ca.key -CAcreateserial -out ./certs/domain.crt -days 100000 -extfile extfile.cnf Error opening CA Certificate ./certs/ca.crt 이렇게 에러 발생 이유
openssl x509 -req -in ./certs/domain.csr -CA ./certs/ca.crt -CAkey ./certs/ca.key -CAcreateserial -out ./certs/domain.crt -days 100000 -extfile extfile.cnf
이후 과정은 책그대로 따라하니 됐습니다 !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
레지스트리 컨테이너 인증서 생성 과정중에서
openssl x509 -req -in ./certs/domain.csr -CA ./certs/ca.crt -CAkey ./certs/ca.key -CAcreateserial -out ./certs/domain.crt -days 100000 -extfile extfile.cnf
Error opening CA Certificate ./certs/ca.crt 이렇게 에러 발생 이유
발생원인
여기서 Country Name(2 letter code) []: 부분에 빈값을 입력하면 `error, no objects specified in config file` 출력 아니라 2자리 나라 코드 입력 문제 해결당시 : "KR" 입력
결과
이후 과정은 책그대로 따라하니 됐습니다 !
The text was updated successfully, but these errors were encountered: