apt-get updateWith that completed, go ahead and start installing the LAMP server.
apt-get install apache2That’s it. To check if Apache is installed on your server, direct your browser to your server’s IP address (eg. http://12.34.56.789). The page should display the words "It works!" like this.
ifconfig eth0 | grep inet | awk '{ print $2 }'
apt-get install mysql-serverDuring the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell.
mysql_secure_installationThe prompt will ask you for your current root password.
Enter current password for root (enter for none): OK, successfully used password, moving on...Then the prompt will ask you if you want to change the root password. Go ahead and choose N and move on to the next steps.
By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... Success! By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! Cleaning up...Once you're done with that you can finish up by installing PHP on your virtual server.
apt-get install php5 php-pear php5-suhosin php5-mysqlAfter you answer yes to the prompt twice, PHP will install itself.
service apache2 restartCongratulations! You now have LAMP stack on your control panel!
nano /var/www/info.phpAdd in the following line:
<?php phpinfo(); ?>Then Save and Exit.
Article ID: 190
Created On: Thu, Dec 26, 2013 at 11:24 PM
Last Updated On: Sun, Jan 5, 2014 at 8:17 PM
Authored by: ASPHostServer Administrator [asphostserver@gmail.com]
Online URL: http://faq.asphosthelpdesk.com/article.php?id=190