-3

I know that Ubuntu server is for server and LAMP is software for server which stands for Linux Apache MySQL PHP. My doubts are for when it comes to hosting a site. Is it required to install LAMP on Ubuntu server? Or does Ubuntu server has all the features of lamp?

Adrian Sanguineti
  • 2,455
  • 1
  • 27
  • 29
Daniel
  • 1
  • 1

1 Answers1

1

You would normally install Ubuntu(or whatever distro) then all the components of lamp. The server distribution of Ubuntu doesn't include Apache, PHP, or MySQL by default. You can install them with sudo apt install php5 libapache2-mod-php5 apache2 mysql-server

See this page for more details on the configuration. https://www.howtoforge.com/ubuntu_lamp_for_newbies

Faxn
  • 366
  • 2
  • 3