Last active
May 21, 2019 14:01
-
-
Save PierreJanineh/dcb1ecd2409d0274610d9c3e6e443194 to your computer and use it in GitHub Desktop.
Setting up VM Instance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Update and upgrade operating system. | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| // Install Java | |
| sudo apt-get install default-jre | |
| // Install Tomcat and Tomcat admin | |
| sudo apt-get install tomcat9 | |
| sudo apt-get install tomcat9-admin | |
| // Restart Tomcat server | |
| sudo service tomcat9 restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment