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

To continue with the registration process, follow the step mentioned below:
-
Delete stale or unused application URLs from your CONNECT account.
If the issue still exists, proceed with the following steps:
-
Acquire an access token
-
Configure an application
-
Add URL’s 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
-
Log into your CONNECT account.
Note: You must be an administrator on your CONNECT account to perform this operation.
-
Select an application. The Edit Application slide-in pane appears.
-
Scroll down to the listed Redirect and Log out URLs.
-
Select delete icon to delete a URL.

-
Repeat step 4 for all stale or unused URLs for each application.
Acquire an access token
-
Open the browser and navigate to CONNECT.
-
Sign in with your user credentials. If prompted, select the appropriate account.
-
Select Integrations from the left navigation pane.

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

-
For Access Token Configuration, select Advanced.
-
Select Account access token.
Ensure that the Roles include On-Premise Identity Integration (AIM) and record the access token. This is required later during the registration process.
Configure an application
Link the redirect URL’s and logout URL’s with an application. Each application can support 100 redirect URL’s and 100 logout URL’s.
-
Select Integrations from the left navigation pane.
-
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 you have any other applications listed other than the default application, select the other application.
-
Confirm whether 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 as it was created for a different purpose.
-
Scroll through the redirect URLs and select Add redirect URL.
-
Add a redirect URL using this format: "https://{fqdn}/identitymanager/signin-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com).
-
Scroll through the logout URLs and select Add logout URL.
-
Add a logout URL using this 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 the other application has also reached the limit of 100 redirect URLs and 100 logout URLs, then create a new application before adding in your redirect and logout URL’s.
-
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 through the redirect URLs and select Add redirect URL.
-
Add a redirect URL using this format: "https://{fqdn}/identitymanager/signin-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com).
-
Scroll through the logout URLs and select Add logout URL.
-
Add a logout URL using this format: "https://{fqdn}/identitymanager/signedout-callback-avevaconnect" (where {fqdn} is your fully qualified domain name. i.e. mycomputer.mydomain.com).
Register the SMS or RSSO Server with CONNECT using Powershell
On the computer that is 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