Scout - Resolving Scout Server service startup failure due to Registry database corruption

book

Article ID: CTX695749

calendar_today

Updated On:

Description

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.

Cause

Registry database status is incorrect

Resolution

  1. Verify and update the database status

    1. Open SQL Server Management Studio (or your preferred SQL client)

    2. Connect to the database hosting Scout Server data

    3. Execute the following SQL command to reset the status:

    UPDATE System
    SET ParamVal='ready'
    WHERE ParamName='Status';
    
    1. Confirm the status has been updated:

      • Query the table:

      SELECT * FROM System WHERE ParamName='Status';
      
      • Ensure ParamVal is now "ready"

  2. Restart the Scout Server service

    1. On the Scout Server machine, open the Services application

    2. Locate the Scout Server service

    3. Start the service

    4. Monitor its behavior to ensure it starts without error

Issue/Introduction

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.

Additional Information

  • 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