How to Install Apache, MySQL, and PHP on Ubuntu

  • Last Created On Dec 05, 2024
  • 12
0 0

LAMP includes Apache, MySQL, PHP, and Ubuntu. This guide was written for Ubuntu 14.04.

Step One: Install Apache

Apache is a free open source software for web servers.

To install Apache on Ubuntu, type these commands:

sudo apt-get update
sudo apt-get install apache2

Or just copy and paste this:

sudo apt-get update; sudo apt-get install apache2

Tahhda. Let’s check if Apache was installed correctly. Run the command: hostname -I and note down that IP. Open up your Internet Browser and direct your browser to that IP (Example: http://108.61.212.235 ). The page should load and say “It Works!”.

Step Two: Install MySQL

MySQL is a database management system. Let’s install MySQL on Ubuntu. Type these commands:

sudo apt-get install mysql-server php5-mysql

During the install, MySQL will request for you to setup a password.

Once that has been installed, run these commands:

sudo mysql_install_db

Then write:

sudo /usr/bin/mysql_secure_installation

Step Three: Install PHP

Now write these commands:

sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt

Done.

Views: 12

Recent Articles

  • How to Install JAX with ROCm Acceleratio...
    96
  • Deploy a PyTorch Workspace on a Vultr Cl...
    71
  • Managing Backup Storage
    82
  • Automating FTP Backups in Windows Server
    71
  • Automating FTP Backups in Linux
    75

Popular Articles

  • Our General Terms & Conditions
    2630
  • Our Privacy Policy
    2474
  • Our Cookies Policy
    275
  • Our Terms of Use
    152
  • How to Install JAX with ROCm Acceleratio...
    96