英文:
Unable to upload root certificate Event Grid Namespace
问题
I followed the documentation and generated root and intermediate certificates.
Link to documentation ->https://learn.microsoft.com/en-us/azure/event-grid/mqtt-certificate-chain-client-authentication
However, Now i am unable to upload this to the event grid namespace.
How do i resolve this issue ?
英文:
I followed the documentation and generated root and intermediate certificates.
Link to documentation ->https://learn.microsoft.com/en-us/azure/event-grid/mqtt-certificate-chain-client-authentication
However, Now i am unable to upload this to the event grid namespace.
How do i resolve this issue ?
答案1
得分: 1
将证书转换为:
$certFilePath = "C:\Path\to\certificate.cer"
Export-Certificate -Cert $cert -FilePath $certFilePath -Type CERT
. 参考CA证书链。
英文:
To convert a certificate:
$certFilePath = "C:\Path\to\certificate.cer"
Export-Certificate -Cert $cert -FilePath $certFilePath -Type CERT
. Refer to this for CA certificate chain.
答案2
得分: 0
The files are currently in .crt format. It has to be converted to .pem or .cer. If you can open the file in a text editor, copy the contents and save it with .pem extension to convert it to .pem.
英文:
The files are currently in .crt format. It has to be converted to .pem or .cer. If you can open the file in a text editor, copy the contents and save it with .pem extension to convert it to .pem.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论