Hi! I am not managing to generate a keystore for the manager (jetty 9 / java 11).
We have done this before many times as we also embed jetty in other projects. But for some reason it keeps rejecting the keystore. Anybody has any idea of that this could be about? This is how we are doing it: - name: Generate PKCS#12 file openssl_pkcs12: action: export path: jetty.pkcs12 friendly_name: jetty privatekey_path: Test_Server_Key.pem certificate_path: VDC_Test_Server.crt other_certificates: - VDC_Test_Intermediate_CA.crt - VDC_Test_CA.crt state: present passphrase: Secret - name: Generate Java Key Store shell: keytool -importkeystore -srckeystore jetty.pkcs12 -srcstoretype PKCS12 -destkeystore keystore Any idea what could be going on? Rafael