The following error occurs when trying to open Harweb:
SCM 14.0.2 (Server + Client) has been installed.
It's a system with MS Windows 2019 and MS SQL Server 2019.
Release : 14.0 and up
I found information about this error on the Microsoft website:
Cause
These errors occur if both the following conditions are true:
The error occurs because of a change in the default behavior of the client drivers. Older versions of client drivers are designed to assume that data encryption is OFF by default. The new drivers assume this setting to be ON by default. Because data encryption is set to ON, the driver tries to validate the server's certificate and fails.
Recommend to add the "trustServerCertificate=true;" option to the JDBCConnectionURL in the harweb.cfg file.
Like this:
JDBCConnectionURL=jdbc:sqlserver://my.sqlserver.hostname;databaseName=harvest;integratedSecurity=false;trustServerCertificate=true;selectMethod=cursor
Then restart Tomcat and try it again.