Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VPS and infrastructure-as-a-service IaaS, what is the difference?

Tags:

java

vps

iaas

I am Java developer, from my point of view, VPS and infrastructure-as-a-service IaaS is the same, both offer me virtual machine to built what ever applications stack I want, is this right or I am missing something here?

like image 440
DrAhmedJava Avatar asked Oct 06 '22 13:10

DrAhmedJava


1 Answers

A VPS is a component of an IaaS solution. An IaaS provider might also offer DNS utilities which help you host web servers, traffic shaping and bandwidth capabilities, insight into the performance of your servers, firewalls, etc.

At its core though, an IaaS consists of a VPS. However, many major providers are moving towards PaaS which offers the capability to scale up or down VPS's on demand and can abstract away key pieces of hardware & software. For example, Google app engine abstracts away the entire OS and just hosts your web service.

like image 167
Pace Avatar answered Oct 16 '22 00:10

Pace