2015-09-30 109 views
0

HP SMH (System Management Homepage)上,我想用內部CA頒發的證書替換默認的PEM。用內部頒發的證書替換證書

我有三個證書,一個是私鑰,另一個是證書 另一個是CA證書。它適用於openldap和stunnel等應用程序。 對於hpsmh處我曾試圖先轉換爲pcks7

openssl crl2pkcs7 -outform PEM -nocrl -certfile /etc/ssl/certs/hpux.crt -out cert.pem 
openssl crl2pkcs7 -outform PEM -nocrl -certfile /etc/ssl/certs/hpux.key -out file.pem 

然後我複製到/opt/hpsmh/sslshare/cert.pem/opt/hpsmh/sslshare/file.pem。但在重啓SMH時出現此錯誤:

The server certificate did not match the private key and has been regenerated. 
The problematic certificate was renamed certmm.pem and is in the "..\hp\sslshare" subdirectory. 

有什麼建議嗎?由於

+4

Stack Overflow是用於編程和發展問題的站點。這個問題似乎與題目無關,因爲它不涉及編程或開發。請參閱幫助中心的[我可以詢問哪些主題](http://stackoverflow.com/help/on-topic)。也許[超級用戶](http://superuser.com/)或[服務器故障](http://serverfault.com/)會是一個更好的地方。另請參閱[我在哪裏發佈有關Dev Ops的問題?](http://meta.stackexchange.com/q/134306)。 – jww

回答

0

我找到了解決辦法呆着,惠普接受X509證書 所以我也

cp /etc/ssl/private/hpux.key /opt/hpsmh/sslshare/file.pem 
cp /etc/ssl/certs/hpux.crt /opt/hpsmh/sslshare/file.pem 

重新啓動hpsmh處,工作正常