orchestrator
2023.10
false
UiPath logo, featuring letters U and I in white

Orchestrator installation guide

Automation CloudAutomation Cloud Public SectorAutomation SuiteStandalone
Última actualización 13 de feb. de 2025

Cambio de la URL de Orchestrator/Identity Server

Si decide actualizar manualmente sus instancias de Orchestrator/Identity Server de nodo único a multinodo, es posible que deba cambiar la URL de Orchestrator/Identity Server. El caso en el que debe cambiar la URL de Orchestrator/Identity Server es cuando la URL del equilibrador de carga se utiliza en una instalación multinodo, ya que es independiente de cualquier nombre de nodo.

Si la instalación de nodo único está configurada para ser utilizada por un equilibrador de carga, actualizar a una instalación multinodo no requiere cambiar la URL pública.

Para que Orchestrator siga siendo totalmente funcional, es necesario seguir varios pasos al cambiar la dirección pública de Orchestrator o Identity Server. Esta página describe estos pasos.

Actualizar la base de datos

Para actualizar la URL de Orchestrator/Identity Server, siga la siguiente consulta SQL, donde primero declara variables para el nombre del servidor actual y el nuevo nombre del servidor, y luego actualiza la instrucción usando la función REPLACE.
-- Declare variables for the current server name and the new server name 
DECLARE @CurrentServerName NVARCHAR(255) = 'server1'; -- Input: e.g., 'server1' 
DECLARE @NewServerName NVARCHAR(255) = 'server2'; -- Input: e.g., 'server2'  

-- Update statement using REPLACE function 
UPDATE [identity.ClientRedirectUris] 
SET [RedirectUri] = REPLACE([RedirectUri], @CurrentServerName, @NewServerName)
WHERE [RedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'  

UPDATE [identity].[ClientPostLogoutRedirectUris] 
SET [PostLogoutRedirectUri] = REPLACE([PostLogoutRedirectUri], @CurrentServerName, @NewServerName)
WHERE [PostLogoutRedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'-- Declare variables for the current server name and the new server name 
DECLARE @CurrentServerName NVARCHAR(255) = 'server1'; -- Input: e.g., 'server1' 
DECLARE @NewServerName NVARCHAR(255) = 'server2'; -- Input: e.g., 'server2'  

-- Update statement using REPLACE function 
UPDATE [identity.ClientRedirectUris] 
SET [RedirectUri] = REPLACE([RedirectUri], @CurrentServerName, @NewServerName)
WHERE [RedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'  

UPDATE [identity].[ClientPostLogoutRedirectUris] 
SET [PostLogoutRedirectUri] = REPLACE([PostLogoutRedirectUri], @CurrentServerName, @NewServerName)
WHERE [PostLogoutRedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'

Actualizar el archivo de configuración de Orchestrator e Identity Server

Make sure that the IdentityServer.Integration.Authority parameter within the Orchestrator's UiPath.Orchestrator.dll.config is accurately pointing to the correct Identity Server public address.

¿Te ha resultado útil esta página?

Obtén la ayuda que necesitas
RPA para el aprendizaje - Cursos de automatización
Foro de la comunidad UiPath
Uipath Logo White
Confianza y seguridad
© 2005-2025 UiPath. Todos los derechos reservados.