counter hit make
The SQL Server Service Broker for the current Opsmgr database is not enabled - scom

System Center Operations Manager

Blog about SCOM 2007 aka Opsmgr

The SQL Server Service Broker for the current Opsmgr database is not enabled

Yesterday I came accros this error:

image

Saying that the SQL server Service Broker or database mirroring endpoint is disabled or not configured.

clip_image002[4]

If you don’t know what the SQL server service broker exactly is, have a look here: An introduction to SQL server service broker. In summary the Service Broker, internal or external processes can send and receive guaranteed, asynchronous messaging by using extensions to Transact-SQL. And it needs to be up and running for our Opsmgr DB.

So I did a search on google and found this post where they describe how to enable the service broker.

 

In summary:

  1. First stop the opsmgr SDK service
  2. Open SQL Server Management Studio.
    1. Click New Query
      1. In the query window, enter the following query: ALTER DATABASE OperationsManager SET SINGLE_USER WITH ROLLBACK IMMEDIATE
      2. Click Execute.
    2. Click New Query
      1. Enter the following query: ALTER DATABASE OperationsManager SET ENABLE_BROKER
      2. Click Execute.
      3. image
    3. Click New Query.
      1. In the query window, enter the following query: ALTER DATABASE OperationsManager SET MULTI_USER
      2. Click Execute.
      3. image
  3. You can verify the setting for ENABLE_BROKER is set to 1 by using this SQL query: SELECT is_broker_enabled FROM sys.databases WHERE name='OperationsManager'.
  4. Restart your Opsmgr SDK service.

 

That’s it!

 

Grtz,

Alexandre Verkinderen

http://scug.be/blogs

 

     

     

Comments

SCUG at myITforum.com said:

Yesterday I came accros this error: Saying that the SQL server Service Broker or database mirroring endpoint

# November 22, 2008 4:17 PM

SCOM Lab - SQL Server Service Broker for the current Opsmgr database is not enabled | Thebitstreamer said:

Pingback from  SCOM Lab - SQL Server Service Broker for the current Opsmgr database is not enabled | Thebitstreamer

# July 1, 2009 9:58 PM

Rantings of an IT Pirate said:

Wow, these images have issues… Firstly, Server 2008 is not activated.  This is not a huge deal as

# May 21, 2010 4:27 AM

Brad Bird at myITforum.com said:

Wow, these images have issues… Firstly, Server 2008 is not activated.  This is not a huge deal as

# May 21, 2010 4:59 AM