Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon Lightsail vs Amazon RDS

I'm wondering can we setup SQL Server inside Amazon Lightsail? So I don't need to purchase Amazon RDS Plan. What's the difference if I prefer Amazon RDS as my database instance?

I want to build simple Point of Sales web with node.js and there are only about 10 users which use it.

like image 500
Wendi Avatar asked Jan 26 '23 15:01

Wendi


2 Answers

You can actually have your database hosted a couple of different ways with Lightsail.

Lightsail has a managed database option that is built on top of RDS, so if you don't want to have to install and manage MySQL you can just use the managed offering. It will likely be more expensive than self-hosting, but comes with the benefit of not having to manage the underlying system, optional one-click high availability mode, and automatic backups. Today the managed service only supports MySQL - but we've announced that we're adding Postgres shortly.

If you'd rather pay a little less, you can (as stated above) install just about anything you want into a Lightsail instance. So you could provision a Lightsail instance and install MySQL (or Postgres or Mariadb or whatever).

Now if you want to run MSSQL, there isn't a managed offering, but there is a blue print for SQL express on Windows server available as well.

like image 169
Mike Coleman Avatar answered Jan 29 '23 04:01

Mike Coleman


You can install whatever you want on Amazon Lightsail, as long as it is supported by the operating system. Lightsail is just an environment to launch virtual machines.

Amazon RDS is a managed database service, which means AWS takes care of many things you need to do manually otherwise. With RDS you get managed backups, easy on-demand snapshots, automatic patching, the possibility to scale up and down in a simple way, and advanced monitoring, performance metrics, and alerts. You also get a nice API to control your SQL Server/MySQL instance.

like image 35
Javier Ramirez Avatar answered Jan 29 '23 04:01

Javier Ramirez