Clarify includes a keystore utility to update the Cleo Dashboard truststore with the certificate required for Clarify compatibility. This ensures the Dashboard can establish a trusted connection to Clarify after installation.
The utility is located in \Cleo\Clarify_6_Server\utils. Three script variants are provided for different environments:
update-clarify-truststore.bat— (Windows Command Prompt)update-clarify-truststore.ps1— (Windows PowerShell)update-clarify-truststore.sh— (Linux / macOS)
Parameters
All three scripts accept the same parameters:
| Parameter | Description |
| DashboardInstallDir | The root installation directory of the Cleo Dashboard |
| ServerHost | The hostname or IP address of the Clarify server |
| ServerPort | The port number of the Clarify server |
If any parameters are omitted, the .bat and .sh scripts will exit with usage guidance. The .ps1 script will interactively prompt for the missing values.
Usage
| Linux / macOS | ./update-clarify-truststore.sh /opt/cleo/dashboard clarify.example.com 5443 |
| Windows Command Prompt: | update-clarify-truststore.bat "C:\Cleo\Dashboard" clarify.example.com 5443 |
| Windows PowerShell | .\update-clarify-truststore.ps1 -DashboardInstallDir "C:\Cleo\Dashboard" -ServerHost clarify.example.com -ServerPort 5443 |
Linux / macOS Prerequisites
The script requires either jar (included with any JDK installation) or both unzip and zip. If jar is not available, install the alternatives with:
apt-get install -y unzip zipAll other required utilities (mktemp, cp, cat, grep, date, dirname, chmod, rm) are included in standard Linux and macOS installations.
Comments
0 comments
Please sign in to leave a comment.