insights
2021.10
false
- Release Notes
- Getting Started
- Installation and Upgrade
- Hardware and Software Requirements
- Modifying Insights Configurations
- Upgrading
- Troubleshooting
- Migrating to Automation Suite
- Support
- User Migration Tool
- Backup and Restore
- Access and Permissions
- Interacting with Insights
- Troubleshooting
Modifying Insights Configurations
OUT OF SUPPORT
Insights
Last updated Nov 11, 2024
Modifying Insights Configurations
- Go to Add or Remove Programs.
- Find UiPath Insights and click
Modify.
- Click Change in the newly open window.
- Input the new Orchestrator URL and Installation
Access Token and click Next. See Installation key for instructions on how to get an Installation
Access Token.
- Click Skip in the following windows if you
do not want to change them.
- Click Next in the Ready To Install window.
- Go to Orchestrator Server and update the Insights
database connection string. You need to manually change it in Orchestrator configuration
file.
- Open the
UiPath.Orchestrator.dll.config
file. - In the
connectionStrings
section, modify theconnectionString
parameter of the keyname="Default"
as follows: - For SQL Authentication:
connectionString="Data Source={YOUR_ORCH_DB_HOST};Initial Catalog={YOUR_ORCH_DB_NAME};User ID={YOUR_ORCH_DB_SQL_USER};Password={YOUR_ORCH_DB_SQL_PASSWORD}" />
- For Windows Authentication:
connectionString="Data Source={YOUR_ORCH_DB_HOST};Initial Catalog={YOUR_ORCH_DB_DATABASE_NAME};Integrated Security=true" />
Example for SQL Authentication:
<add name="Default" providerName="System.Data.SqlClient" connectionString="Data Source=sql.uipath.com;Initial Catalog=UiPathOrchestrator;User ID=docs-uipath;Password=SecretP@ssword" />
<add name="Default" providerName="System.Data.SqlClient" connectionString="Data Source=sql.uipath.com;Initial Catalog=UiPathOrchestrator;User ID=docs-uipath;Password=SecretP@ssword" />Example for Windows Authentication:
<add name="Default" providerName="System.Data.SqlClient" connectionString="Data Source=sql.uipath.com;Initial Catalog=UiPathOrchestrator;Integrated Security=true" />
<add name="Default" providerName="System.Data.SqlClient" connectionString="Data Source=sql.uipath.com;Initial Catalog=UiPathOrchestrator;Integrated Security=true" /> - Open the
- Go to the Insights Server and open the Modify page by following the steps above.
- You can click Skip if you do not want changes in other windows.
- Input your new Insights database settings.
- Click Next.
- Click Next in the Ready To Install window.
Note: The email service configuration is not removed if you uncheck the Configuring Email Service (SMTP) option.
- Go to the Insights Server and open the Modify window by following the steps above.
- You can click Skip if you do not want changes in other windows.
- Input your updated email settings.
- Click Next.
- Click Next in the Ready To Install window.
- Make sure your new certificate is imported to
both Personal (for the certificate) and Trusted Root Certification Authorities
(for the root certificate). Also ensure the certificate is valid.
- Go to IIS Manager and open the UiPath
Insights website.
- Open the Bindings page.
- Select the binding and click Edit, then
choose your new certificate from the SSL certificate drop-down menu and click
OK.
- Restart IIS.
To update the port number after Insights installation, you need to follow these steps.
Step | Action |
---|---|
1. Create domain-signed certificate | Create a domain-signed certificate with the new URL. |
2. Change port number in IIS |
Open IIS Manager and navigate to Site > Insights application > Bindings to change the port number. |
3. Remove URI port number from Identity Server DB | Remove the URI port number from the the following parameters found in the Identity Server database:
|
4. Modify provisioning.url parameter in Insights config
file
|
|
5. Modify permission.url parameter in Insights config
file
|
|
6. Reset IIS | Open CMD as admin and run iisreset to reset IIS.
|