320

LAMP is a software stack that provides an environment suited for developing and hosting most dynamic web applications. 

Software
Copy link

The LAMP image can be installed on Ubuntu, Debian, or CentOS: you can select your preferred Linux distribution.

Our LAMP image includes:

  • Apache 2
  • МySQL Server
  • Nginx
  • PHP

We will install the latest version of the software available in the repositories.

Getting Started
Copy link

To deploy LAMP on your server:

  1. When creating a new Hostman server or reinstalling an existing one, select MarketplaceLAMP
  2. Select a Linux distribution. By default, we suggest using Ubuntu 22.04.
  3. Finish creating your server.

Your server will be deployed in a couple of minutes. For a quick check, you can go to http://your_server_ip to see that Apache is up and running.

You check the installed software versions by connecting to the server via SSH and  running these commands:

Apache
Copy link

# For Ubuntu and Debian:
apache2 -v
# For CentOS:
httpd -v

MySQL
Copy link

mysql

Nginx
Copy link

nginx -v

PHP
Copy link

php -v