Howard Fluker
Member
Hello,
We have implemented an SSL certificate on our webserver and now we need to implement WSS service in order to browser allows websockets connections. I followed steps described in WCS Admin Guide in the Security section (page 91) to import certificates. SSL certificates are provided by GoDaddy and we got the TomCat related files. No PEM files were included, thus, we converted them before to import. We used the following instructions to import:
No errors were reported during import process. Just "Certificate was added to keystore"
Then we added the corresponding password configuration into the flashphoner.properties configuration file:
We restarted service after that but connection goes TIMED OUT. SSL is working properly on Apache for HTTPS service.
What can be wrong with configuration process or what can we do to solve this issue? Thanks
We have implemented an SSL certificate on our webserver and now we need to implement WSS service in order to browser allows websockets connections. I followed steps described in WCS Admin Guide in the Security section (page 91) to import certificates. SSL certificates are provided by GoDaddy and we got the TomCat related files. No PEM files were included, thus, we converted them before to import. We used the following instructions to import:
Code:
openssl pkcs12 -export -in tgn.crt -inkey tgn.key -out tgn.p12 -name "*.thegridnet.com"
keytool -importkeystore -srckeystore tgn.p12 -srcstoretype PKCS12 -destkeystore /usr/local/FlashphonerWebCallServer/conf/wss.jks
openssl x509 -in root.crt -out root.pem -outform PEM
keytool -import -keystore /usr/local/FlashphonerWebCallServer/conf/wss.jks -file root.pem -alias ca-root
openssl x509 -in bundle.crt -out bundle.pem -outform PEM
keytool -import -keystore /usr/local/FlashphonerWebCallServer/conf/wss.jks -file bundle.pem -alias ca-intermediate
Then we added the corresponding password configuration into the flashphoner.properties configuration file:
Code:
wss.keystore.password=<our-password>
wss.cert.password=<our-password>
What can be wrong with configuration process or what can we do to solve this issue? Thanks