Learning Outcomes
- distinguish between real and virtual machines
- configure and provision a VM in the public cloud
- deploy a Node.js application to virtual machine
- use a daemon process manager to keep a Node.js application alive
Resources
- Virtualization Explained (video)
- slides
- narated slides (video)
Lab
Video walkthrough of this lab.
Create a Node.js Application
Start the Google Cloud Shell.
In the terminal, use the Express application generator to create an application skeleton:
Change to the application directory:
Install the dependencies:
Run the application:
Preview the application using the web preview button .
Stop the application (CTRL-C
).
Make a visible change to myapp/views/index.ejs
and save the changes.
Re-start the application:
Refresh the application in the browser and confirm the change took effect.
Stop the application (CTRL-C
).
Create a Firewall Rule
From the Google Cloud console page, go to “NETWORKING | VPC network | Firewall”.
Click on the “CREATE FIREWALL” button.
- For “Name”, enter “allow-http-8080”.
- Leave “Logs” in the “Off” setting.
- Leave “Network” at “default”
- Leave “Priority” at “1000”.
- Leave “Direction of traffic” at “Ingress”.
- Leave “Action on match” at “Allow”.
- For “Targets”, choose “Specified target tags”.
- For “Target tags”, enter “http-server-8080”.
- Leave “Source filter” at “IP ranges”.
- For “Source IP ranges”, enter “0.0.0.0/0”.
- Leave “Second source filter” at “None”.
- Leave “Protocols and ports” at “Specified protocols and ports”.
- Check “tcp” and enter “8080”.
Click on the “CREATE” button.
Create a Virtual Machine
From the Google Cloud console page, go to “COMPUTE | Compute Engine | VM instances”.
Click on the “CREATE INSTANCE” button.
- For “Name”, enter “lab1”.
- For “Region”, choose either the region geographically closest to you (if you are in Vancouver, this would be “us-west1 (Oregon)”) or “northamerica-northeast1 (Montreal)”.
- Leave “Zone” alone.
- For “Machine configuration | Series”, choose “N1”.
- For “Machine configuration | Machine type”, choose “f1-micro”.
- Confirm that “Boot disk” is set to “Debian GNU/Linux 10 (buster)”.
- Click the “Management, security, disks, networking, sole tenancy” link to expand the available options.
- Click on the “Networking” tab.
- For “Network tags”, enter “http-server-8080”.
Click on the “Create” button.
Install Node.js on the Virtual Machine
Back in the Cloud Shell terminal, verify that the new virtual machine instance is running:
(You may be asked to authorize the API call).
SSH into the new virtual machine:
(It will proabably generate a SSH key first. You can leave the passphrase blank.)
Update the package list and upgrade the installed packages (NOTE: the upgrade will take a long time – be patient):
Install Node.js:
Log out of the virtual machine (CTRL-D
).
Deploying a Node.js Application to a Virtual Machine
Delete the node_modules directory:
Move to the parent directory:
Copy the application to the virtual machine:
SSH back into the new virtual machine:
Change to the application directory:
Install the dependencies:
Run the application:
In a new tab, browse to the application using the external IP address for the virtual machine (http://NNN.NNN.NNN.NNN:8080
).
Stop the application (CTRL-C
).
Log out of the virtual machine (CTRL-D
).
Crash a Node.js Application
In myapp/views/index.ejs
add an links to the home page as follows:
Create myapp/routes/crash.js
as follows:
In myapp/app.js
, require the “crash” router:
and configure the app to use the new router:
Re-start the application:
Preview the running application in the browser and follow the “Crash” link to “crash” the application. Wait 4 seconds; follow the “Home” link in the page. The page should not load because the application has stopped.
Remove the node_modules
directory and copy the modified application to the virtual machine:
SSH back into the virtual machine:
Change to the application directory:
Run the application:
In a new tab, browse to the application using the external IP address for the virtual machine (http://NNN.NNN.NNN.NNN:8080
). Follow the “Crash” link to “crash” the application. Wait 4 seconds; follow the “Home” link in the page. The page should not load because the application has stopped.
Use a Daemon Process Manager to Keep a Node.js Application Alive
Install the PM2 daemon process manager:
Change to the bin
directory of the application:
Start the application using the process manager:
View the logs for the running application:
Browse to the application using the external IP address for the virtual machine (http://NNN.NNN.NNN.NNN:8080
). Follow the “Crash” link to “crash” the application. Watch the log entries and notice how the process manager automatically restarts the application. Follow the “Home” link in the page and observe how it now works correctly.
Log out of the virtual machine (CTRL-D
).