Only root CA certificate is allowed. (Code: 1411)

Hello,

I’m trying to add a custom certificate authority (CA) to SSL/TLS > Custom Origin Trust Store > Upload trust store.

I created a self-signed certificate using the command:

openssl req -x509 -newkey rsa:4096 -sha256 -keyout CA.key -out CA.crt -days 3000 -nodes -new

However I’m getting the error: Only root CA certificate is allowed. (Code: 1411)

Root certificates need to be generated with a special field. Try this:

openssl req -x509 -newkey rsa:4096 -sha256 -keyout CA.key -out CA.crt -days 3000 -nodes -new -extensions v3_ca
2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.