The issue occurs when the table dbo.System has its status set to "converting" instead of "ready".
Updating the database status and restarting the Scout Server service restores normal functionality.
Always ensure you have a database backup before applying changes.
Registry database status is incorrect
Verify and update the database status
Open SQL Server Management Studio (or your preferred SQL client)
Connect to the database hosting Scout Server data
Execute the following SQL command to reset the status:
UPDATE System
SET ParamVal='ready'
WHERE ParamName='Status';
Confirm the status has been updated:
Query the table:
SELECT * FROM System WHERE ParamName='Status';
Ensure ParamVal is now "ready"
Restart the Scout Server service
On the Scout Server machine, open the Services application
Locate the Scout Server service
Start the service
Monitor its behavior to ensure it starts without error
Scout Server may fail to start if the registry database status is incorrect. This guide explains how to fix the database status and restart the service safely.
Make sure you have a database backup before running any update commands
If issues persist, consult Scout Server logs for more details
This resolution assumes the problem is database-related; if it persists, investigate permissions or corrupted service configurations