Connecting via HTTPS
To connect via HTTPS you need to have Data Shaper Server.
You need to configure both the Server and Designer (in the case of Designer with its own certificate), or the Server alone (in the case of Designer without a certificate).
Designer has its Own Certificate
In order to connect to Data Shaper Server via HTTPS
when Designer must have its own certificate, create client and server keystores/truststores (note: the following guide is for Unix system):
To generate these keys, execute the following script in the
bin
subdirectory of JDK or JRE wherekeytool
is located:
(In these commands, localhost
is the default name of your Data Shaper Server. You can change the Server name by replacing the localhost
name in these commands by any other hostname.)
After that, copy the serverKS.jks
and serverTS.jks
files to the conf
subdirectory of Tomcat.
Then, copy the following code to the server.xml
file in this conf
subdirectory:
Warning!
The path to keystore and truststore files must be absolute. Relative paths may not work. This is valid for both parts of communication.
Now you can run Data Shaper Server by executing the startup
script located in the bin
subdirectory of Tomcat.
Configuring Data Shaper Designer
Now you need to copy the clientKS.jks
and clientTS.jks
files to any location.
After that, copy the following code to the end of the CloverDXDesigner.ini
file, which is stored in the Data Shaper Designer installation directory:
Now, when you start your Data Shaper Designer, you will be able to create your Data Shaper Server projects using the following default connection to the Server: https://localhost:8443/clover
where both login name and password are clover.
Designer does not have its Own Certificate
In order to connect to Data Shaper Server via HTTPS
when Designer does not need to have its own certificate, you only need to create a server keystore.
To generate this key, execute the following script (version for Unix) in the bin
subdirectory of JDK or JRE where keytool
is located:
(In these commands, localhost
is the default name of your Data Shaper Server, if you want any other Server name, replace the localhost
name in these commands by any other hostname.)
After that, copy the serverKS.jks
file to the conf
subdirectory of Tomcat.
Then, copy the following code to the server.xml
file in this conf
subdirectory:
Now you can run Data Shaper Server by executing the startup
script located in the bin
subdirectory of Tomcat.
And, when you start your Data Shaper Designer, you will be able to create your Data Shaper Server projects using the following default connection to Server: https://localhost:8443/clover
where both login name and password are clover.
You will be prompted to accept the Server certificate. Now you can create a Data Shaper Server project.
Last updated