Gets the current status of the Configuration Service on the controller.
Syntax
Get-ConfigServiceStatus [-AdminAddress <String>] [<CommonParameters>]
Detailed Description
Enables the status of the Configuration Service on the controller to be monitored. If the service has multiple data stores it will return the overall state as an aggregate of all the data store states. For example, if the site data store status is OK and the secondary data store status is DBUnconfigured then it will return DBUnconfigured.
Parameters
-AdminAddress<String>
Specifies the address of a XenDesktop controller the PowerShell snap-in connects to. You can provide this as a host name or an IP address.
Required? |
false |
Default Value |
Localhost. Once a value is provided by any cmdlet, this value becomes the default. |
Accept Pipeline Input? |
false |
Return Values
Citrix.Fma.Sdk.Utilities.Service.ServiceStatusInfo
The Get-ConfigServiceStatus command returns an object containing the status of the Configuration Service together with extra diagnostics information.
DBUnconfigured
The Configuration Service does not have a database connection configured.
DBRejectedConnection
The database rejected the logon attempt from the Configuration Service. This may be because the service attempted to log on with invalid credentials or because a database has not been installed in the specified location.
InvalidDBConfigured
The expected stored procedures are missing from the database. This may be because the Configuration Service schema has not been added to the database.
DBNotFound
The specified database could not be located with the configured connection string.
DBNewerVersionThanService
The version of the Configuration Service currently in use is incompatible with the version of the Configuration Service schema on the database. Upgrade the Configuration Service to a more recent version.
DBOlderVersionThanService
The version of the Configuration Service schema on the database is incompatible with the version of the Configuration Service currently in use. Upgrade the database schema to a more recent version.
DBVersionChangeInProgress
A database schema upgrade is currently in progress.
OK
The Configuration Service is running and is connected to a database containing a valid schema.
Failed
The Configuration Service has failed.
Unknown
(0) The service status cannot be determined.
Notes
If the command fails, the following errors can be returned.
Error Codes
-----------
DatabaseError
An error occurred in the service while attempting a database operation.
DatabaseNotConfigured
The operation could not be completed because the database for the service is not configured.
DataStoreException
An error occurred in the service while attempting a database operation - communication with the database failed for various reasons.
PermissionDenied
You do not have permission to execute this command.
AuthorizationError
There was a problem communicating with the Citrix Delegated Administration Service.
CommunicationError
There was a problem communicating with the remote service.
ExceptionThrown
An unexpected error occurred. For more details, see the Windows event logs on the controller or the XenDesktop logs.
Examples
-------------------------- EXAMPLE 1 --------------------------
c:\PS>Get-ConfigServiceStatus
DBUnconfigured
Get the current status of the Configuration Service.