I have an SSIS project that I want to use Azure DevOps' CI/CD. Using SSIS build for the build pipeline, it works.
I have created an agent, installed and configured in the desired on-prem server. I create an SSIS Deploy for the release pipeline, using the agent. But I am getting an error, that it cannot connect to the server.
Log snippet:
2023-01-24T03:18:22.0917377Z ------------------------------ispac to deploy--------------------------------- 2023-01-24T03:18:22.0967049Z C:\azagent_work\r1\a[XXXX][XXXX][XXXX].ispac 2023-01-24T03:18:22.0977826Z ------------------------------------------------------------------------------ 2023-01-24T03:18:22.1047463Z 2023-01-24T03:18:22.3707323Z ##[error]01/24/2023 03:18:22 Failed to connect to the SQL Server '[XXXX]': Failed to connect to server [XXXX]. 2023-01-24T03:18:22.3720991Z ##[error]01/24/2023 03:18:22 Failed to connect to server [XXXX]. 2023-01-24T03:18:22.3769044Z -----------------------------------Errors------------------------------------- 2023-01-24T03:18:22.3820946Z ##[error]Failed to connect to the SQL Server '[XXXX]': Failed to connect to server [XXXX]. 2023-01-24T03:18:22.3823079Z 2023-01-24T03:18:22.3842653Z ##[error]Failed to connect to server [XXXX]. 2023-01-24T03:18:22.3844585Z 2023-01-24T03:18:22.4537552Z ##[section]Finishing: Deploy SSIS
I can see the ispac file in the server & I can run it manually, but it seems it can't when via Azure Devops.
Appreciate any help... please.