I try to follow instruction on "[Windows authentication without passwords in OpenStack](https://cloudbase.it/windows-without-passwords-in-openstack)" but it seems like it is missing instruction for Import Key Pair via OpenStack Horizon.
After I run script `create-winrm-client-cert.sh` I have got 2 files
winrm_client_cert.pem
winrm_client_cert.pfx
I need to export Public key from `winrm_client_cert.pem`
by this OpenSSL command
openssl x509 -pubkey -noout -in winrm_client_cert.pem -out pubkey.pem
Then I try to import this public key to my project:
-----BEGIN CERTIFICATE-----
MIIDIjCCAgqgAwIBAgIJAPb3vERlPtSwMA0GCSqGSI......
............+0rcoyVMWNI50SrXPWpX6uaIuyWsN1Vc
-----END PUBLIC KEY-----
but I encountered with “***Unable to import key pair***” when trying to import the Key Pair via the OpenStack Horizon same as this link https://schwulet.wordpress.com/2016/01/15/import-keypair-via-openstack-horizon/
Please can you let me know what did I missing?
↧