Version 25.2 the self-signed certificate is no longer generated. You have to generate self signed certificate and configure it in FortifyConnect settings file.
Please follow the below steps to generate self-signed certificate on Linux OS and to configure the FortifyConnect settings file.
Generate a Private Key
openssl genrsa -out server.key 2048Create a Certificate Signing Request (CSR)
openssl req -new -key server.key -out server.csr -subj "/C=<COUNTRY>/ST=<STATE>/L=<LOCATION>/O=OpenText/OU=IT/CN=fc.test.fortifyhosted.com"Generate the Self-Signed Certificate
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crtCombine into a .pem for Fortify
cat server.crt server.key > fortify-connect-api-certificate.pemCreate folder and copy certificates.
mkdir -p /home/fortifyconnectsshuser/scdast/certificates/ cp fortify-connect-api-certificate.pem . cp server.key fortify-connect-api-key.keyUpdate certficate path in JSON file under Kestrel
nano FortifyConnectClientSettings_XX.json"Kestrel": { "Endpoints": { "Https": { "Url": "https://127.0.0.1:35477", "SslProtocols": [ "Tls12", "Tls13" ], "Certificate": { "Path": "/home/fortifyconnectsshuser/scdast/certificates/fortify-connect-api-certificate.pem", "KeyPath": "/home/fortifyconnectsshuser/scdast/certificates/fortify-connect-api-key.key" } } } }Run ./StartFortifyConnectClient_XX.sh
./StartFortifyConnectClient_XX.sh