Error
root@ip-172-31-3-238:/home/ubuntu# /opt/lampp/lampp start
Starting XAMPP for Linux 7.4.13-0...
XAMPP: Starting Apache...fail.
XAMPP: Another web server is already running.
XAMPP: Starting MySQL...ok.
XAMPP: Starting ProFTPD...ok.
Solution 1
$ /opt/lampp/lampp stop
$ ps -eaf | grep lampp
$ ps -eaf | grep httpd
$ ps -eaf | grep apache
$ kill -9 500 5347 5386
$ /opt/lampp/lampp start
Or Solution 2
$ sudo service apache2 stop
$ ps -eaf | grep apache2
$ ps -eaf | grep httpd
$ sudo service apache2 status
$ sudo service mysql status
$ sudo service mysqld status
$ /opt/lampp/lampp start
$ /opt/lampp/lampp stop
$ /opt/lampp/lampp start
Latest posts by rajeshkumar (see all)
- The Three Pillars of Digital Resilience in 2025: Database Administration, Cybersecurity, and Vulnerability Assessment - September 24, 2025
- Avionics Technician: The Backbone of Modern Aviation - September 12, 2025
- Top 20 Computer Vision Libraries - August 26, 2025