Troubleshooting connection problems
- Last UpdatedApr 15, 2026
- 4 minute read
The Federated Identity Provider plugin supports registering up to 100 System Management Servers (SMS) or Redundant SSO Servers (RSSO) with an CONNECT account. If you exceed this limit, the Configurator displays the following error message:

To continue with the registration process, complete the following steps. Detailed instructions are provided in the sections that follow.
-
Delete stale or unused application URLs from your CONNECT account.
This step alone might resolve the limitation issue. If the issue persists, continue with the remaining steps.
-
Acquire an access token
-
Configure an application
-
Add URLs to an existing application
-
Add a new application
-
Register the System Management Server or Redundant SSO Server with CONNECT using Powershell
Delete stale or unused application URLs from CONNECT
-
Sign in to your CONNECT account.
Note: You must be an administrator for the CONNECT account to perform this operation.
-
Select an application. The Edit Application slide-in pane opens.
-
Scroll to the listed Redirect URLs and Log out URLs.
-
Select the delete (trash can) icon next to the URL you want to remove and repeat this step for all stale or unused URLs in each application.

Acquire an access token
-
Open the browser and go to CONNECT.
-
Sign in with your user credentials, and if prompted, select the appropriate account.
-
From the left navigation pane, select Integrations.

-
Select Access tokens, and then select Create access token to create a new access token.

-
In Access Token Configuration, select Advanced.
-
Select Account access token option.
Ensure that Roles includes On-Premise Identity Integration (AIM), and record the access token for use later in the registration process.
Configure an application
Link the redirect URLs and logout URLs with an application. Each application supports up to 100 redirect URLs and 100 logout URLs.
-
From the left navigation pane, select Integrations.
-
Select Applications.
By default, the screen displays "FID_PCSSystemManagementServer" application. This application is automatically created by the Federated Identity Provider configurator plugin.
Add URLs to an existing application
-
If applications other than the default application are listed, select the appropriate application.
-
Verify the application Type is set to PCS On-Premises Identity Integration. If the application Type is not set to PCS On-Premises Identity Integration, ignore the application.
-
Scroll to the redirect URLs section and select Add redirect URL.
-
Add a Redirect URL in the following format: "https://{fqdn}/identitymanager/signin-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com)
-
Scroll to the Logout URLs section and select Add logout URL.
-
Add a Logout URL in the following format: "https://{fqdn}/identitymanager/signedout-callback-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com)
-
Record the Client ID for the application.
Add a new application
If the application "FID_PCSSystemManagementServer" is the only application, or if any other application has reached the limit of 100 redirect URLs and 100 logout URLs, then create a new application before adding in your redirect URLs and logout URLs.
-
Select Create application to create a new application for AIM integration.
-
Select the Type as PCS On-Premises Identity Integration.
-
Record the Client ID field. This is required later during the registration process.
-
Scroll to the redirect URLs section and select Add redirect URL.
-
Add a redirect URL in the following format: "https://{fqdn}/identitymanager/signin-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com)
-
Scroll through the logout URLs section and select Add logout URL.
-
Add a logout URL in the following format: "https://{fqdn}/identitymanager/signedout-callback-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com)
Register the System Management Server or Redundant SSO Server with CONNECT using Powershell
On the computer configured as the System Management Server (or RSSO), open Powershell as an administrator and run the following commands:
$AccessToken = ConvertTo-SecureString -String "********" -AsPlainText -Force Add-PcsAuthenticationProvider -name AvevaConnect -ClientID ******** -Endpoint https://signin.connect.aveva.com -ServicesEndpoint https://services..aveva.com/ -AccessToken $AccessToken