SSL Certificat import through web interface

michelklingler

New Member
Hi,

I have some trouble importing my SSL certificate through the web browser interface.

I bought a domain and attached a certificate to it.

I'm running the server on a CentoOS server.

I can Upload my certificat but it doesn't seems that it does anything.

I changed my IP to my domain name in the flashphoner.properties file like :
ip = mydomaine.com

Do I need to do something else ?

Thanks !
 

Max

Administrator
Staff member
Good day.
I can Upload my certificat but it doesn't seems that it does anything.
You can check if cerificate is imported successfully as follows:
1. On Certificates page, domain name should be displayed (see example for our demo site)
1594176722149.png

2. The browser should show certificate as valid
1594176857365.png

May be you should clean site cookies and/or open web admin interface in Incognito mode to see the changes
3. On server, wss.jks file should differ from wss.jks.backup
1594177095975.png

I changed my IP to my domain name in the flashphoner.properties file like :
ip = mydomaine.com
This is not required. But, if you've done this, please make sure mydomaine.com is resolved to server external IP from the server itself.
 

michelklingler

New Member
Thank you!

Still having trouble :(
I got 3 files from GoDaddy.
2 .crt file and 1 pem.

I manage to upload both .crt but when I import the key I got the following message :
Screenshot_2.png


From GoDaddy I download the Apache version of the certificate, it is the one right ?

Thanks for support
Michel
 

Max

Administrator
Staff member
Regarding p7b.
It should be converted to PEM format before importing.
Code:
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.crt
 
Top