Home » Categories » Multiple Categories

How To Install nginx on Ubuntu 12.04 LTS

About nginx

nginx is a high performance web server software. It is a much more flexible and lightweight program than apache.

Set Up

The steps in this tutorial require the user to have root privileges. You can see how to set that up in the Initial Server Setup Tutorial in steps 3 and 4.

Install nginx

To install nginx, open terminal and type in:
sudo apt-get install nginx
When prompted, say yes. nginx is now installed on your virtual private server.

Start nginx

nginx does not start on its own. To get nginx running on your server, type:
sudo service nginx start

RESULTS: Confirm That nginx Has Started

You can confirm that nginx has been installed as your web server by directing your browser to your IP address.

**You can run the following command to reveal your virtual server’s IP address.
ifconfig eth0 | grep inet | awk '{ print $2 }'
When you visit your IP address page in your browser, you will see the words, "Welcome to nginxā€¯

You can see a screenshot of the utilitarian nginx welcome page here

To ensure that nginx will be up after reboots, it’s best to add it to the startup.

Type this command into terminal:
update-rc.d nginx defaults
You may see a message like:
System start/stop links for /etc/init.d/nginx already exist.
If that is the case, then nginx is set up to run on startup, and you are all set.

Congratulations! You have now installed nginx
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
How To Use the Pyramid Framework To Build Your Python Web App on Ubuntu
Viewed 4112 times since Sat, Jan 4, 2014
Installing and Using the Vim Text Editor on a Cloud Server
Viewed 2520 times since Fri, Dec 27, 2013
How To Install Wordpress with nginx on CentOS 6
Viewed 9208 times since Sat, Jan 4, 2014
How to Get Started With mod_pagespeed with Apache on an Ubuntu and Debian Cloud Server
Viewed 3807 times since Thu, Dec 26, 2013
How To Install Wordpress on Arch Linux
Viewed 2571 times since Sun, Dec 29, 2013
How To Use the Web2py Framework to Quickly Build Your Python App
Viewed 4578 times since Sat, Jan 4, 2014
How To Create Nagios Plugins With Python On Ubuntu 12.10
Viewed 6704 times since Sat, Jan 4, 2014
How To Set Up Apache Virtual Hosts on Debian 7
Viewed 3271 times since Fri, Dec 27, 2013
How To Install and Use Docker: Getting Started
Viewed 3825 times since Sat, Jan 4, 2014
How To Use SuExec in Apache to run CGI Scripts on an Ubuntu
Viewed 3569 times since Mon, Dec 30, 2013