我一直在试图找出这些领域中哪些是属于什么的:
aws iam upload-server-certificate --server-certificate-name certificate_object_name --certificate-body file://public_key_certificate_file --private-key file://privatekey.pem --certificate-chain file://certificate_chain_file我收到了一封有6次下载的电子邮件:
PKCS#7 Base64编码
作为PKCS#7 Bin编码
作为X509,Base64编码
仅作为X509证书,Base64编码
作为X509中间层/根目录,Base64编码
当X509中间/根只反向时,Base64编码
我正在使用这个链接:http://docs.aws.amazon.com/IAM/latest/UserGuide/InstallCert.html,但我被卡在了“上传服务器证书”部分。
"??“在田里到底该怎么做?
aws iam upload-server-certificate
--server-certificate-name <Server Name> <-- My input
--certificate-body file://<??.pem>
--private-key file://<KEYNAME.pem> <-- My input
--certificate-chain file://<??> <-- What should the chain file consists of and in what format? 谢谢,
发布于 2014-04-28 18:08:23
我终于把它安装到linux服务器上了!下面是插入Putty命令行的确切命令:
aws iam upload-server-certificate --server-certificate-name mywebsitecert --certificate-body file:///home/ec2-user/mywebsite/mywebsitecert.pem --private-key file:///home/ec2-user/mywebsite/privatekey.pem --certificate-chain file:///home/ec2-user/mywebsite/interm_reverse.cer我使用InCommon SSL证书来完成此任务。
发布于 2014-03-18 19:02:37
--certificate-body仅为X509证书,Base64编码,--certificate-chain为X509中间/根,Base64为编码。
https://stackoverflow.com/questions/22487859
复制相似问题