Thingworx self-signed certificate instructions not working
- October 15, 2021
- 1 reply
- 2636 views
I followed the instructions as specified in Article - CS193947.
After booting up the server on localhost. My http connection worked but the my https connection gives me a ERR: No Response from server.
I am using the portable edition on local pc for demo purposes.
For the config.xml
I commented out
```
<Connector port="${port.https}" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
keystoreFile=".keystore" keystorePass="${https.keystorePassword}"
clientAuth="false" sslProtocol="TLS" />
```
And added
```
<Connector port="${port.https}" protocol="org.apache.coyote.http11.Http11NioProtocol"
SSLEnabled="true" maxThreads="200" scheme="https" secure="true"
defaultSSLHostConfigName="Full Computer name as FQDN">
<SSLHostConfig hostName="Full Computer name as FQDN" sslProtocol="TLS">
<Certificate certificateKeystoreFile="keystore.pbx"
certificateKeystorePassword="Password0" certificateKeystoreType="PKCS12" />
</SSLHostConfig>
</Connector>
```
Attached is the original xml file (server.xml) that I made the changes to (Which works).
The server copy i'm trying to use with the removed is servernew.xml (Which only works for http, I removed FQDN and password in the attachment)
I didn't make any changes to any other config files and I have the generated keystore.pbx next to the original .keystore in the folder.
Any idea what is going wrong here?
I do what to get it signed by CA but as I understand it, this is the first step that must be completed.
