For a project, I have to move data from SQL Server to AWS Redshift.
For the ETL process, I'd like to use AWS glue and connect to my source (SQL Server), but I always get the following error message when testing the connection
Check that your connection definition references your JDBC database with correct URL syntax, username, and password. The TCP/IP connection to the host, port 1433 has failed. Error: "Connection timed out: no further information. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall
Port are correctly opened on my server and did sever test with other tools (PowerBI and SQL Workbench can connect to it)
Here is the connection string used :
jdbc:sqlserver://host:1433;databaseName=AdventureWorksDW2012
I'm not sure what's the issue at this point
if anyone has an explanation, thanks for sharing
Thanks!
I have a similar code in my glue job
Did you setup VPC in order to connect to your SQL Server from AWS Glue?