587
Views
6
Comments
How to integrate the AWS RDS SQL Server.
Question

Hi,

I want to connect the AWS RDS (Sql Server) with the Outsystems. What are the Step wise Process?

What are the prerequisite in AWS side and steps from AWS side?

Thanks.


2024-07-05 14-16-55
Daniël Kuhlmann
 
MVP
2020-06-27 18-35-53
Rohan Hanumante

Daniël Kuhlmann wrote:

Hi Rohan,

The next document would be a starting point:

https://success.outsystems.com/Documentation/11/Extensibility_and_Integration/Integrate_with_an_External_Database

There is also an instruction video: 

https://www.outsystems.com/learn/lesson/1847/demo-integrating-with-external-databases/

Regards,

Daniel

Hi Daniel,

I got that it can be possible by service Center configuring external Database. But my concern is that what would be the value for "Server" input in this case?

Thanks.....


2020-11-22 11-13-41
Shailendra Phadke

Rohan Hanumante wrote:

Daniël Kuhlmann wrote:

Hi Rohan,

The next document would be a starting point:

https://success.outsystems.com/Documentation/11/Extensibility_and_Integration/Integrate_with_an_External_Database

There is also an instruction video: 

https://www.outsystems.com/learn/lesson/1847/demo-integrating-with-external-databases/

Regards,

Daniel

Hi Daniel,

I got that it can be possible by service Center configuring external Database. But my concern is that what would be the value for "Server" input in this case?

Thanks.....



HI,


I am also facing the same problem. I created RDS and create the instance of SQL Server, mention the server name in "outsystems" but it is not connected.


Please give me the solution if you get it.



2024-07-05 14-16-55
Daniël Kuhlmann
 
MVP

Hi,

Read the amazon documenation:

https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ConnectToMicrosoftSQLServerInstance.html

On the connectivity/security tab is the enpoint (server) and port.

Regards,

Daniel

UserImage.jpg
Anthony Troy

I am having the same issue.

AWS documentation is pretty clear and I have used it to attach other tools to my AWS RDS-SQL Server.

The issue seems to be that AWS shares an Endpoint and a Port, and of course their is a database name.

I entered the Endpoint into the "Server" field and the database into the database field and it won't attach. It just spins.

Is the Server truly exactly the Endpoint? Or the Endpoint plus the port? If so, is there a format to follow for the port?

Thanks for any assistance.

Thanks

2023-12-13 04-44-54
Khuong

Hi Rohan Hanumante,

Here is the step-by-step checklist to connect AWS RDS to OutSystems:

AWS Side Prerequisites:

  1. Publicly Accessible: Go to RDS > Connectivity & security. Ensure 'Publicly accessible' is set to Yes.

  2. Security Group (Firewall): Click on the VPC Security Group. Add an Inbound Rule for MSSQL (Port 1433) allowing the IP of your OutSystems environment (or 0.0.0.0/0 for testing).

  3. Create User Database: AWS RDS SQL Server only has system databases (master, model...) by default. You must connect via a client tool (like SSMS) first and run CREATE DATABASE YourDBName;.

OutSystems Side:

  1. Server/Host: Use the AWS Endpoint (e.g., mydb.xxx.rds.amazonaws.com).

  2. Database Name: Enter YourDBName (created in step 3), do not use the RDS Instance ID.

  3. User/Password: Use the credentials created during RDS setup.

Regards

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.