Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Ubuntu 14.04: How to install LAMP with one command?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1
    • 0
    • 605
    Comment on it

    LAMP full form is  Linux Apache Mysql PHP. To install LAMP with one command on Ubuntu 14.04 just write the following command:

    First refresh your package index...

    $ sudo apt-get update

     

    Now install the LAMP stack:

     

    sudo apt-get install lamp-server^

     

    Don't miss the caret (^) at the end.

    All done, now follow the instructions, this command will install Apache, Mysql and PHP on ubuntu. When the installation is completed then on the url write down localhost

    Although LAMP is installed, we can still take a look and see the components online by creating a quick php info page.

    To set this up, first create a new file.

    sudo nano /var/www/info.php

    Add in the following line:

    <?php
    phpinfo();
    ?>

     

    Then Save and Exit.

    Restart apache so that all of the changes take effect:

    sudo service apache2 restart

    Finish up by visiting your php info page:  localhost/info.php

     

    Ubuntu 14.04: How to install LAMP with one command?

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: