View Revisions: Issue #7002

Summary 0007002: SSL certificate import wizard and trust checkup
Revision 2025-08-04 14:13 by emiller
Additional Information You can use EasyRSA to generate certificates for testing purposes: https://github.com/OpenVPN/easy-rsa

Here are some commands that you can use to generate a signed certificate:

easyrsa init-pki
easyrsa build-ca
easyrsa gen-req [new file name]
easyrsa sign-req server [same file name]

See the following README for more information: https://github.com/OpenVPN/easy-rsa/blob/master/README.quickstart.md

When importing a certificate into the private keystore, SymmetricDS expects the private key to be included in the same file. After running the above commands, copy the private key text from the .key files within the /pki/private directory and paste it into the corresponding .crt files in the /pki and /pki/issued directories.
Revision 2025-07-23 11:47 by emiller
Additional Information