# How to Install LAMP using Atlantic.Net’s One-Click Install

> URL: https://www.atlantic.net/vps-hosting/how-to-install-lamp-with-one-click-install/ | Published: 2015-11-12 | Updated: 2026-03-03 | Author: Alexander Wise

##### Verified and Tested 10/31/15

## Introduction

Atlantic.Net is actively working towards providing an exceptional customer experience for everyone, whether you are Tech savvy or not, we want to simplify our services so you can be up and running in no time. This is where the One-Click application installation comes into place. Atlantic.Net is working to ensure that all of the most popular applications are available to you at the click of a button.

In this how-to we will walk you through Atlantic.Net’s one-click [VPS hosting](https://www.atlantic.net/vps-hosting/) LAMP installation. As of now, we offer the LAMP One-click installation runs on an Ubuntu 14.04 LTS Operating System.
 ![LAMPs created by Walker Cahall ](https://www.atlantic.net/wp-content/uploads/2018/01/lamp1-2.png) LAMPs created by [Walker Cahall](http://www.waltronic.net/)

## Installing LAMP via Atlantic Net’s One-Click Install

First, log into the Cloud Portal at [cloud.atlantic.net](https://cloud.atlantic.net/?page=userlogin) and select Add Server.

![Click on Add Server](https://www.atlantic.net/wp-content/uploads/2018/01/lamp2.jpg)

*Click on Add Server*

You will now be prompted to type a server name (in this case our server will be named “One Click LAMP”), and then you will select the location where you want your server created. If you don’t know which location to use, we recommend selecting the one that is closest to your geographical area to ensure the best performance.

![Server name and server location](https://www.atlantic.net/wp-content/uploads/2018/01/lamp3-1.jpg)

*Server name and server location*

Then, you will need to click on Applications and then select LAMP. You should see that it will change the icon to LAMP on Ubuntu 14.04.

![LAMP application selected](https://www.atlantic.net/wp-content/uploads/2018/01/lamp4-1.jpg)

*LAMP application selected*

Once done, you will need to select the size that you want to create. For this tutorial, an XS server was selected.

![Server size selected](https://www.atlantic.net/wp-content/uploads/2018/01/lamp5-1.jpg)

*Server size selected*

Finally, you before you create the server there are two optional add-ons to choose from: SSH Key and Enable Backups.Atlantic.Net highly recommends using both of these features to help improve security and to ensure that all of your server data is backed up.

Once you’ve decided to go with the add-ons or not, you may proceed with the clicking Create Server.

![Create Server selected](https://www.atlantic.net/wp-content/uploads/2018/01/lamp6.jpg)

*Create Server selected*

You will then see your servers information like the following image. You should receive a copy of this information in your email. Make sure to store your server connection details in a safe place!

![Server created and server credentials](https://www.atlantic.net/wp-content/uploads/2018/01/lamp7.jpg)

*Server created and server credentials*

Once you’ve received an email stating your server is available you can use an SSH client to access the server, or you can use our Atlantic.Net VNC Console from within your Cloud Panel.  For this tutorial,[we are using PUTTY – a free open source SSH client that can be downloaded here](https://www.putty.org/). Once your in, you will see the following *Welcome* message on your terminal session.

![Your servers Welcome message with MySQL Credentials](https://www.atlantic.net/wp-content/uploads/2018/01/lamp8.jpg)

*Your server’s Welcome message with MySQL Credentials*

Now, that the installation is complete we can begin testing out our LAMP components. Since we’re already in the command line, Let us test MYSQL with the following command which will confirm that it is running.

```
service mysql status
```

![MySQL status](https://www.atlantic.net/wp-content/uploads/2018/01/lamp9.jpg)

*MySQL status*

Then, we will test Apache by going to your web browser and typing http://YOUR.IP.ADD.RESS you should see the following screen.

![Apache verification page online](https://www.atlantic.net/wp-content/uploads/2018/01/lamp10.jpg)

*Apache verification page online*

Finally, we can test PHP by completing the following steps. We must create a test PHP file which can be accomplished with the following command:

```
nano /var/www/html/test.php
```

You will then paste the following PHP script in the empty document and then save your file.

```
<?php
phpinfo();
?>
```

Restart Apache so these setting can take affect. Do this with the following command:

```
service apache2 restart
```

OK! Finally, test PHP by going to your web browser and typing http://YOUR.IP.ADD.RESS/test.php you should see the following screen.
 ![PHP verification page online](https://www.atlantic.net/wp-content/uploads/2018/01/lamp11.jpg)

*PHP verification page online*

## What Next?

Congratulations! You have just installed LAMP using Atlantic.Net’s One-Click Install. Thank you for following along in this How-To and feel free to check back with us for latest updates.
