Hey Chance,
I know of two situations when this error could present itself.
#1 - Mismatch in TLS/SSL configurations between the database config file and the repository connection.ini file.
Check these two files:
“C:\DeadlineRepository10\settings\connection.ini”
“C:\DeadlineDatabase10\mongo\data\config.conf”
The config. conf file settings need to line up with the appropriate connection.ini settings. The connection.ini is how the client connects to the database so if the TLS options are mismatched a connection failure will happen.
config.conf example:
ssl:
SSL/TLS options
mode: requireSSL
security:
authorization: enabled
connection.ini example:
EnableSSL=True
Authenticate=True
In this example you can see that TLS/SSL and Authorization is enabled for the DB, so the connection.ini file needs to have EnableSSL and Authenticate set to True so the client can authenticate properly.
#2 - Second issue is that you could be hitting a ulimit for max open files for your database machine. Since you are using Windows this is not your specific issue.
If #1 is not the cause we would want to take a look at the database log to get the error the db is receiving when the client tries to connect.
“C:\DeadlineDatabase10\mongo\data\logs\log.txt”
Regards,
Charles