Linux and Open Source

Quickly Install a LAMP server on Ubuntu

November 15, 2008, 4:56 PM PST

Takeaway: Many times Jack Wallen has been asked for help putting together a LAMP server. With that in mind, Jack highlights the quick and easy steps to installing a LAMP server on a running Ubuntu machine.

I can’t tell you how many times I have been asked what is the fastest, easiest way to install a LAMP (Linux Apache, MySQL, PHP) server on Ubuntu. Well, I guess it’s time I just post it here for everyone to enjoy.

I am going to assume that this server does not have any of the components pre-installed. I am also going to assume you have sudo permission for the server. So starting with a blank slate we will first install Apache. To install Apache you will need to issue (from a terminal) the command:

sudo apt-get install apache2

Once this is installed you want to make sure Apache is up and running, so fire up your browser and point it to http://localhost (or you can use the servers’ IP address). If you get the message “It Works!” you are good to go.

With Apache installed, let’s move on. The next step should be installing PHP. To get php installed so that it will have everything it needs to integrate with Apache issue the command:

sudo apt-get install php5 libapache2-mod-php5

Before Apache can see that php is installed you will have to restart Apache like so:

sudo /etc/init.d/apache2 restart

Time to test to make sure php is working. Create a file within /var/www/testphp.php with the following contents:

< ?php phpinfo(); ?>

save that file in /var/www/ and then point your browser to that file. If all is well you will see the text, “Test PHP Page.” If you see that, you can move to to…

The next step: MySQL.

To install the necessary tools, issue the command sudo apt-get install mysql-server. Once the system is installed it gets just a bit tricky. You have to first set a password for mysql. To do this, run the first command in order to get to the mysql prompt and the second to set the password:

 mysql -u root
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('YOURPASSWORD');

Where YOURPASSWORD is the actual password you want to use for the root user.

You’re done. You now have a basic LAMP installation. Of course I would suggest taking this further by installing phpmyadmin in order to make creating MySQL databases much easier. But other than that, you are ready to install applications that require the LAMP configuration.

Do you deploy LAMP servers?

Delivered each Tuesday, TechRepublic’s free Linux and Open Source newsletter provides tips, articles, and other resources to help you hone your Linux skills. Automatically sign up today!

Get IT Tips, news, and reviews delivered directly to your inbox by subscribing to TechRepublic’s free newsletters.

Jack Wallen

About Jack Wallen

A writer for over 12 years, Jack's primary focus is on the Linux operating system and its effects on the open source and non-open source communities.

Jack Wallen

Jack Wallen

Jack Wallen is an award-winning writer for Techrepublic and Linux.com. As an avid promoter/user of the Linux OS, Jack tries to convert as many users to open source as possible. His current favorite flavor of Linux is Bodhi Linux (a melding of Ubuntu and Enlightenment).

When Jack isn't writing about Linux he is hard at work on his other writing career -- writing about zombies, various killers, super heroes, and just about everything else he can manipulate between the folds of reality. You can find Jack's books on Amazon, Barnes & Noble, and Smashwords.

Outnumbered in his house one male to two females and three humans to six felines, Jack maintains his sanity by riding his mountain bike and working on his next books. For more news about Jack Wallen, visit his website Get Jack'd.

10
Comments

Join the conversation!

Follow via:
RSS
Email Alert