Posts

Showing posts from October, 2019

Steps to install XAMPP on UBUNTU

Steps to install XAMPP on UBUNTU Step 1: Download XAMPP package for Linux from https://www.apachefriends.org/index.html website. Step 2: Make the Installation package executable $ cd /home/[username]/Downloads ls Confirm execute permission to that file chmod +x xampp-linux-x64-7.2.12-0-installer.run For installation sudo ./xampp-linux-x64-7.2.12-0-installer.run it automatically will install in /opt/lampp Step 3 : Check status sudo /opt/lampp/xampp status cd /opt/lampp/phpmyadmin sudo nano config.inc.php here change /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'root@123'; /* Server parameters */ $cfg['Servers'][$i]['host'] = 'localhost'; uncommand localhost line sudo /opt/lampp/xampp restart sudo ...