UiPath Documentation
orchestrator
2022.10
false
Importante :
Este contenido se ha localizado parcialmente a partir de un sistema de traducción automática. La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.
UiPath logo, featuring letters U and I in white
Sin asistencia

Guía de instalación de Orchestrator

Última actualización 16 de dic. 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

Asegúrate de que el parámetro IdentityServer.Integration.Authority en el UiPath.Orchestrator.dll.config de Orchestrator apunta con precisión a la dirección pública correcta de Identity Server.

¿Te ha resultado útil esta página?

Conectar

¿Necesita ayuda? Soporte

¿Quiere aprender? UiPath Academy

¿Tiene alguna pregunta? Foro de UiPath

Manténgase actualizado