Source: medium.com

What is Virtualization?

Category: Database

In the olden days, developing a web application and deploying it for the use of the users was pretty time consuming and costly. Each application has a server which is considered as the brain of the application and which gets the request from the client and provides the appropriate output by interacting with an API or Database if required.

Each server has an OS installed on top of it and the OS runs a service that provides the required output.

In the above section, we saw that just because of running one service onto a server that has higher resources available than required for the service to run causes underutilization of the resources of server.

The approach is to create 3 VM’s, each of which shares equal resources from the physical machine, and each VM has a service running on top of it.

Related Articles