I installed LAMP first. LAMP is an open source web development platform and consists of Apache, MySQL Database, and PHP. The L stands for "Linux", and something similar exists for Windows called WAMP. I found this site that explains how to install LAMP on Ubuntu 10.10 and 11.04. Most of the information for this post comes from this site. See the link below:
http://www.unixmen.com/linux-distributions/4-ubuntu/1239-install-lamp-with-1-command-in-ubuntu-1010-maverick-meerkat
First, I installed a software installation package called tasksel. Tasksel groups software by tasks, and it allows you to install packages for a specific task with one command. So to install tasksel, I used the following command:
sudo apt-get install tasksel
LAMP
Begin the installation of LAMP by running the tasksel program we just installed:
sudo tasksel
I moved the cursor down to "LAMP server" using the arrow keys, selected "LAMP server" using the space bar, and then hit tab to "Ok" and pressed enter.
The installation asked me to enter a root password for the MySQL database. Other than that the installation of LAMP did not require any interaction on my part.
After installing LAMP your Ubuntu box will be a functioning web server. You can verify that the installation configured PHP correctly by creating an info.php file:
- sudo vi /var/www/info.php
- <?php
- phpinfo();
- ?>
- sudo /etc/init.d/apache2 restart
PHPMyAdmin
Next, the page mentions installing something called phpmyadmin. Phpmyadmin allows you to manage your MySQL Database through a web browser. I love this idea! So I installed phpmyadmin with the following command:
- sudo apt-get install phpmyadmin
Now we can install Drupal!
Drupal
I followed this guide for the most part and I did not encounter too many problems. I wrote a brief synopsis of my experience below.
I mentioned that a database had to be created for Drupal. If you haven't already, log on as root to http://localhost/phpmyadmin. The place where you create a database should be on the initial screen you see after logging in. Type the name of the database and click "Create". You can leave both of the options at their default settings. Remember the name of this database because you will have to use it when configuring Drupal.
Next you will need to download the files for Drupal. These files can be found here. After downloading the correct version (I choose 6.9 so the file name was drupal-6.9.tar.gz) move the file to the document root of the web server( in my case this was /var/www). Unpack the file using the following command:
- tar xvzf drupal-6.9.tar.gz
Navigate to the site http://localhost/site/ to begin the Drupal installation process. I didn't have a problem with the installation. I had to change the permissions on a directory and copy a file. You will have to enter the name of the database you created in the first step. After completing installation you should be able to navigate to http://localhost/site/ and log in as administrator for further configuration.
Any site that I mention in this post with localhost in it may be different in your case. In my case I was loading the page from the server itself. I can also view these pages on a different computer by using the host name or ip address of the web server instead of localhost.
I completed this process in about two hours. I have been playing around with it but I have not had much luck yet. I'll post with more info at a later point.
Until next time...
No comments:
Post a Comment