Search

Monday, September 15, 2014

SQL Server could not spawn FRunCM thread error

Today I had to change the domain account on some Server. After I had changed the account the SQL server was not starting and showing below error:
Server Error: 17190, Severity: 16, State: 1.
2014-07-17 11:42:06.11 Server Initializing the FallBack certificate failed with error code: 1, state: 1, error number: -2146893802.
2014-07-17 11:42:06.11 Server Unable to initialize SSL encryption because a valid certificate could not be found, and it is not possible to create a self-signed certificate.
2014-07-17 11:42:06.11 Server Error: 17182, Severity: 16, State: 1.
2014-07-17 11:42:06.11 Server TDSSNIClient initialization failed with error 0×80092004, status code 0×80. Reason: Unable to initialize SSL support. Cannot find object or property.
2014-07-17 11:42:06.11 Server Error: 17182, Severity: 16, State: 1.
2014-07-17 11:42:06.11 Server TDSSNIClient initialization failed with error 0×80092004, status code 0×1. Reason: Initialization failed with an infrastructure error. Check for previous errors. Cannot find object or property.
2014-07-17 11:42:06.11 Server Error: 17826, Severity: 18, State: 3.
2014-07-17 11:42:06.11 Server Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log.
2014-07-17 11:42:06.11 Server Error: 17120, Severity: 16, State: 1.
2014-07-17 11:42:06.11 Server SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.
After trying all trial and run I notice that when logging on with existing profile on the box there was an error. Something about that the profile couldn't be created and a temporary profile would be used instead.
In the end I had to delete the user profile and than start SQL Server and now SQL server is started properly.
I had followed the below steps:
Right click on computer, select Properties
Click on Advanced System Settings
Select the Advanced Tab
On the user profiles section click on Settings
Select the profile and hit Delete
If you try to log in as that user, the profile will be recreated.
Now when I tried to start SQL Server again, the errors were not there and SQL Server started up without a problem.

No comments:

Post a Comment