When running in an Azure Container Instance (ACI) with a modern Linux base image, the Loome Agent fails to establish a connection to a SQL Server 2014 instance.
Data migration tasks that use ‘SQL Server 2014’ as a source or target connection cannot start. This prevents the synchronization of legacy data into modern platforms like Snowflake or Azure SQL, stalling data integration workflows.
The following errors occur:
The problem is caused by ‘OpenSSL 3.0’ (the security library in the container), which is significantly stricter than previous versions.
It blocks SQL Server 2014 for two reasons:
The fix involves “injecting” a legacy configuration into the container at runtime using an Azure File Share and an environment variable override.
Create a file named openssl_legacy.cnf with these specific compatibility overrides:
openssl_conf = default_conf
[default_conf]
ssl_conf = ssl_sect
[ssl_sect]
system_default = system_default_sect
[system_default_sect]
CipherString = DEFAULT@SECLEVEL=1
Options = UnsafeLegacyRenegotiation
The deployment must include the OPENSSL_CONF environment variable and the volume mount.
Generate the values from the Agent setup page and then supply the needed values on your YAML file.
Required YAML Snippet:

apiVersion: '2021-10-01'
location: <Location>
name: <agent name>
identity:
type: SystemAssigned
properties:
containers:
- name: <agent name>
properties:
image: quay.io/loomesoftware/agent:latest
environmentVariables:
# This tells OpenSSL to use your custom file instead of the system default
- name: OPENSSL_CONF
value: /mnt/config/openssl_legacy.cnf
- name: LOOME_AGENT_SETTING_TENANTS__0__HOSTURL
value: https://dg-api-au.perspectiveilm.com
- name: LOOME_AGENT_SETTING_TENANTS__0__HOSTNAME
value: <agent name>
- name: LOOME_AGENT_SETTING_TENANTS__0__PRODUCT
value: Integrate
- name: LOOME_AGENT_SETTING_TENANTS__0__IDA__CLIENTID
value: <clientId>
- name: LOOME_AGENT_SETTING_TENANTS__0__IDA__SECRET
value: <secret>
- name: LOOME_AGENT_SETTING_TENANTS__0__IDA__AUTHORITY
value: https://identity-au.perspectiveilm.com/
- name: LOOME_AGENT_SETTING_MICROSERVICES__LOGGINGENDPOINT
value: https://logging-au.loomesoftware.com/
resources:
requests:
cpu: 2.0
memoryInGB: 2.0
volumeMounts:
- name: config-volume
mountPath: /mnt/config/
readOnly: true
volumes:
- name: config-volume
azureFile:
shareName: <Fileshare name>
storageAccountName: <YOUR_STORAGE_ACCOUNT_NAME>
storageAccountKey: <YOUR_STORAGE_ACCOUNT_KEY>
osType: Linux
restartPolicy: Always
Open your Command Prompt, navigate to the folder where you saved agent.yaml, and run:
az container create -g <resourcegroup> --file agent.yaml
Ensure your SQL connection string in Loome Portal also includes TrustServerCertificate=true; to complement this fix.