How can an Azure App Service and Databricks connect to an on-premises SQL Server?

0
0
Asked By MellowPine47 On

I have a Java application running in Azure App Service and an Azure Databricks pipeline that both need to connect to a SQL Server hosted on-premises. The database is currently reachable from our corporate network through a VPN. What Azure networking and authentication setup would allow these services to access the server securely?

3 Answers

Answered By CedarFox21 On

An Azure App Service can also use an Azure Hybrid Connection for certain on-premises access scenarios. For Databricks, you’ll need to configure networking and a connectivity method supported by your workspace, such as a virtual network connection or private routing through the corporate network. Check that both services can resolve and reach the database endpoint.

Answered By QuietOrbit6 On

Don’t overlook SQL authentication and authorization. After network connectivity works, configure an appropriate authentication method, create a restricted database user or identity, allow only the required source addresses, and store credentials in a managed secret store rather than in application configuration. If possible, moving or replicating the database to an Azure-managed SQL service may simplify the architecture.

Answered By NorthStarKai8 On

The usual approach is to establish a site-to-site VPN between the Azure virtual network and the on-premises network. You’ll need compatible VPN gateways, correct routing and firewall rules, DNS resolution for the SQL host, and an allowed SQL Server port. The exact configuration depends on your existing network and security setup.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.