- Primeros pasos
- Requisitos
- Mejores prácticas
- Instalación
- Actualizando
- Migrar índices de Elasticsearch
- Cambio de la URL de Orchestrator/Identity Server
- Actualizar el instalador de Windows
- Actualizar el script de Azure
- Servidor de identidad
- Solución de problemas de errores de inicio

Orchestrator installation guide
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.
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'
IdentityServer.Integration.Authority
parameter within the Orchestrator's UiPath.Orchestrator.dll.config
is accurately pointing to the correct Identity Server public address.
See more details about the Identity Server app settings in UiPath.Orchestrator.dll.config.