In our environment we have a self-signed certificate template and the app servers on ports 8000, 8001, 8002, as well as our application app servers, are using that. We're using DHF 5.2.1.
When we try a deploy, it successfully deploys the database, app servers, and so on. Anything on ports 8000 or 8002 works fine. However, when it tries to use our app's final or staging ports, it fails (error messages below).
The gradle.properties file includes the following:
mlSimpleSsl=true
mlRestAuthentication=basic
The app server is using basic authentication with internal security. There are two errors we're seeing (sometimes one, sometimes the other).
* What went wrong:
Execution failed for task ':mlLoadModules'.
> Caught exception before writing was completed: java.net.SocketException: Connection reset by peer
or
* What went wrong:
Execution failed for task ':mlLoadModules'.
> Caught exception before writing was completed: java.net.SocketException: Connection reset by peer
Should mlSimpleSsl
be sufficient here?