CXO-Cockpit can be scaled out to multiple servers to increase the system responsiveness and/or to implement failover scenarios. This article explains how to install the CXO-Cockpit on multiple servers.
...
In order for CXO-Cockpit to run properly in the load-ballanced environemnt, the BackPlane database must be created.
To create the Backplane database, run the configurator in the Maintenance tab click on the Backplane Settings link to open the form allowing you to create or select your Backplane database.
In this form you will be first asked to insert an existing Microsoft SQL Server server name.
The second field allow you to insert the name of either a database you wish to create or an already existing database.
Finally enter the credentials of your Microsoft SQL server server.
You can test the connection by pressing the Test button.
Creating a Backplane Database
You have two options concerning the creation of a new Backplane Database:
Create a new database manually and provide it to the configurator.
if you choose to do so make sure that the database is empty and has its Service Broker enabled. It is important for performance reasons.
if you are not sure you can run the following script:
SELECT [name], [service_broker_guid], [is_broker_enabled] FROM [master].[sys].[databases] |
---|
if the Service Broker is not enabled you can enable it by running the following script:
ALTER DATABASE YOUR_DATABASE SET ENABLE_BROKER |
---|
Let the configurator create the database for you.
To do so, simply enter the name of a non existing database in the field Database name¹ and press Create. The configurator will enable the Service Broker for you.
/!\ Once you application is deployed the database will be managed by SignalR. Do not alter it.
1.If you entered the name of an already existing database before pressing the create button a new Database will not be created. the configurator will, however, verify that the specified database can be used as Backplane database.