If you are new to Unixmen, you may want to subscribe : ![]()
![]()
![]()
![]()
|
20 January 2009
Installing Apache
Now we can get started installing. This will take a few minutes, so grab a beer (or your favorite beverage,) and off we go. To install Apache, type or paste this into your terminal:
sudo apt-get install apache2
Testing Apache
Once apache2 is done installing, you can go ahead and test it by using:
sudo /etc/init.d/apache2 start
If you get a message that it's already running, you're good to go. Now, open up your browser and navigate to:
Installing PHP
Again, to install PHP, type or paste this into your terminal:
sudo apt-get install php5 libapache2-mod-php5
Once it's finished installing, restart apache, using:
sudo /etc/init.d/apache2 restart
Testing PHP
Now, let's make sure that PHP is working properly. To do this, we're going to run phpinfo(). You can, of course, swap out gedit with your editor of choice.
sudo gedit /var/www/phpinfo.php
Type or paste the following into the document, and save it. (remove the space before the '?php')
Now we can test PHP by browsing to:
You should see all of the info about your PHP installation listed on the page, like so. For security reasons, you should remove this page when you're sure that PHP works.
http://localhost/phpinfo.php
Installing MySQL
Now we can conquer MySQL
sudo apt-get install mysql-serverAs MySQL is installing, it will ask you to configure your root password. Make sure that you type it correctly, as it will only ask you once.Testing MySQL
After that is finished, you can test MySQL by running this, where unixmen is your passwordmysql -uroot -punixmen
If it brings you to a MySQL prompt, you're done! You can type exit to get out of MySQL.
Installing phpMyAdmin
Now, if you want to install phpMyAdmin to have a front end for MySQL, you can use the following
sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadminIt will ask you to choose a webserver to configure automatically, you can use the space bar to select Apache2. And after that's finished, restart one last time.sudo /etc/init.d/apache2 restartFinished!
Now you have your own LAMP (Linux Apache MySQL PHP) server, with phpMyAdmin![]()
The End
Now, to pull up your phpMyAdmin panel, you can point your browser at...http://localhost/phpmyadmin
To log in and use PMA.Useful Commands and Default Locations
To Save yourself some time, you can make launchers for Apache or MySQL start, stop, and restart if you feel the need.Apache
sudo /etc/init.d/apache2 start
sudo /etc/init.d/apache2 stop
sudo /etc/init.d/apache2 restartMySQL
sudo /etc/init.d/mysql start
sudo /etc/init.d/mysql stop
sudo /etc/init.d/mysql restartLocations
/var/www/ -- Document Root
http://localhost/phpmyadmin -- phpMyAdmin
/usr/share -- phpMyAdmin local location
If you have a Tip, tutorial, Idea or anything you want to share with unixmen readers, you can send it to : tips[a]unixmen.com or use our contact form Thanks.
Related Articles By Tags :



