Ubuntu Tutorial
Ubuntu Useful Resources
Selected Reading
- Ubuntu - On the Cloud
- Ubuntu - Docker
- Ubuntu - Node.js
- Ubuntu - Installing MySQL & Python
- Ubuntu - Virtual Machines
- Ubuntu - Nginx
- Ubuntu - Development
- Ubuntu - Secure Shell
- Ubuntu - Server Installation
- Ubuntu - Networking
- Ubuntu - Scripting
- Ubuntu - Command Line
- Ubuntu - LibreOffice
- Ubuntu - Spreadsheets
- Ubuntu - Word Writer
- Ubuntu - Files & Folders
- Ubuntu - User Management
- Ubuntu - Media Players
- Ubuntu - Messaging
- Ubuntu - Email
- Ubuntu - Browsers
- Ubuntu - Software Center
- Ubuntu - Device Drivers
- Ubuntu - Environment
- Ubuntu - Flavors
- Ubuntu - Overview
- Ubuntu - Home
Ubuntu Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Ubuntu - Nginx
Ubuntu - Nginx
Nginx is a much pghter web server than Apache. This web server has become quite popular in the recent years. The Apache web server can be quite complex to configure and use. However, Nginx is much simpler. This chapter will focus on how to install this pght web server.
To install Nginx, following are the steps −
Step 1 − Open the command terminal on Ubuntu desktop and run the following command.
sudo apt-get update
This first ensures that all packages on the operating system are up to date.
Step 2 − Next enter the following command to install the nginx server.
sudo apt-get install nginx
Step 3 − Once done, if we run ps –ef | grep nginx, we can see the process for the web server in a running state.
We now have nginx run as a web server on Ubuntu.
Advertisements