Enable SAML single-sign on by creating a keystore.
Use the Java keytool to create one.
keytool
keytool \ -genkeypair \ -storetype pkcs12 \ -keystore lenses.p12 \ -storepass my_password \ -alias lenses \ -keypass my_password \ -keyalg RSA \ -keysize 2048 \ -validity 10000
Reference the keystore file’s path and put the password info in the security.conf configuration file.
security.conf
lenses.security.saml.keystore.location = "/path/to/lenses.p12" lenses.security.saml.keystore.password = "my_password" lenses.security.saml.key.password = "my_password"
See all SSO options.
On this page