Skip to content
Menu
DevSecOps Now!!!
  • About
  • Certifications
  • Contact
  • Courses
  • DevSecOps Consulting
  • DevSecOps Tools
  • Training
  • Tutorials
DevSecOps Now!!!

XAMPP: Another MySQL daemon is already running

Posted on September 4, 2024

Limited Time Offer!

For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!

Enroll Now

This problem happens when MySQL or MariaDB, which comes with XAMPP, is unable to start because another instance of MySQL is already operating on your system. To resolve this, perform the troubleshooting procedures listed below.

Step 1: Identify the Running MySQL Service

The first step is to confirm if another instance of MySQL or MariaDB is running on your system.

For Windows:

Check running services:

  • Press Windows + R, type services.msc, and hit Enter.
  • Scroll down and look for MySQL or MariaDB. If you find it running, right-click on it and select Stop.

Check Task Manager:

  • Press Ctrl + Shift + Esc to open Task Manager.
  • Look under the Processes tab for any MySQL or MariaDB processes. Select the process and click End Task.

For macOS or Linux:

Check running services:

  • Open a terminal and run the following command:
sudo service mysql status
  • If MySQL is running, stop it using:
sudo service mysql stop

Kill MySQL Process:

  • To check if a MySQL process is running, use:
ps aux | grep mysql
  • If you find any MySQL processes running, kill them with:
sudo kill -9 <PID>

Step 2: Change the MySQL Port in XAMPP

If you are running another MySQL service on port 3306, you can change the default port in XAMPP to avoid conflicts.

  1. Stop the MySQL Service in XAMPP:
    • Open the XAMPP Control Panel and stop MySQL if it is running.
  2. Change the MySQL Port in XAMPP:
    • Go to the folder where XAMPP is installed, typically:
      • Windows: C:\xampp\
      • Linux/macOS: /opt/lampp/
    • Open the file my.ini located in the mysql/bin/ directory.
    • Look for the following line: port=3306
    • Change the port number (e.g., 3307 or 3308).
    • Save and close the file.
  3. Update the XAMPP Control Panel (Windows only):
    • In the XAMPP Control Panel, click on Config next to MySQL, then select my.ini.
    • Ensure the port number matches the one you just set.

Step 3: Reconfigure Other Applications Using MySQL

If you have applications connected to MySQL, like PHPMyAdmin or other services, you’ll need to update their configuration files to point to the new port.

  1. PHPMyAdmin Configuration:
    • Navigate to the phpMyAdmin folder inside the XAMPP installation directory.
    • Open the config.inc.php file.
    • Locate the following line:
$cfg['Servers'][$i]['port'] = '3306';
  • Change 3306 to the new port number you set (e.g., 3307).
  • Save the file.

2. Reconfigure Other Applications:

  • Any other applications connecting to MySQL will need to be updated with the new port.

Step 4: Restart XAMPP

Restart XAMPP:

  • Go back to the XAMPP Control Panel and try starting MySQL again.

Verify the MySQL Status:

  • Open your browser and go to http://localhost/phpmyadmin. Check if MySQL is now running without issues.

Step 5: Check for Port Conflicts Using Command Line (Optional)

If the issue persists, it may be helpful to check for port conflicts.

For Windows:

  1. Open Command Prompt and run:
netstat -aon | findstr 3306
  • This will show you if another service is using port 3306. If it is, take note of the PID.

2. Open Task Manager and go to the Processes tab. Look for the process associated with that PID and terminate it if it’s a conflicting service.

For macOS/Linux:

  1. In the terminal, use:
sudo lsof -i :3306

This will list processes using port 3306. If a conflict exists, you can kill the process with:

sudo kill -9 <PID>

Step 6: Reinstall MySQL (As a Last Resort)

If you’ve followed all the steps and the problem persists, you may need to reinstall MySQL in XAMPP.

  1. Backup your databases:
    • Go to C:\xampp\mysql\data (or the equivalent path on your system) and back up your databases by copying this folder.
  2. Uninstall MySQL in XAMPP:
    • In the XAMPP Control Panel, stop MySQL and click Uninstall.
  3. Reinstall MySQL:
    • Reinstall MySQL from the XAMPP installer or download a fresh copy of XAMPP.
  4. Restore your databases:
    • After reinstalling, copy your backup data folder back to C:\xampp\mysql\data.

Conclusion

The “Another MySQL daemon is already running” problem in XAMPP should be fixed by doing these steps. Although port conflicts are the most frequent reason, the problem may typically be resolved by reinstalling MySQL or changing the port.

Post Views: 1,358
  • Another MySQL daemon is already running
  • Linux
  • macos
  • MySql
  • MySQL daemon
  • Running MySQL Service
  • Solved
  • windows
  • Xampp
  • XAMPP: Another MySQL daemon is already running
Subscribe
Login
Notify of
guest
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
  • Master the Machine Learning Lifecycle:Guide to Becoming a Certified MLOps Architect
  • How to Build a Project-Level AI Memory System That Works Across Codex, Claude, and Other AI Coding Tools
  • Certified MLOps Professional: A Deep Dive into the Certified MLOps Professional Certification
  • Certified MLOps Engineer : The Comprehensive Guide to Mastering Machine Learning Operations
  • Codex vs Claude: A Complete Practical Guide for Modern Developers (2026)
  • Certified AIOps Professional Program A Guide to Career Growth
  • Keycloak Multi-Client Architecture with Project-Based Email Validation (Student, Trainer, Company, Consulting)
  • Incorrect definition of table mysql.column_stats
  • Mautic and PHP 8.3 Compatibility Guide (2026)
  • Certified AIOps Engineer: The Complete Career Path and Certification Guide
  • How to Rename Apache Virtual Host Files Safely (Step-by-Step Guide for Linux)
  • AIOps Foundation Certification: Everything You Need to Know to Get Certified
  • DevOps to Certified Site Reliability Professional: A Senior Mentor’s Guide
  • Certified Site Reliability Manager Training, Preparation, and Career Mapping
  • Certified Site Reliability Architect: The Complete Career Guide
  • What Is a VPN? A Complete Beginner-to-Advanced Tutorial
  • How to Install, Secure, and Tune MySQL 8.4 on Ubuntu 24.04 for Apache Event MPM and PHP-FPM
  • Complete Guide to Certified Site Reliability Engineer Career
  • Certified DevSecOps Professional Step by Step
  • Certified DevSecOps Manager: Complete Career Guide
  • Certified DevSecOps Engineer: Skills, Career Path and Certification Guide
  • Step-by-Step: Become a Certified DevSecOps Architect
  • Tuning PHP 8.3 for Apache Event MPM and PHP-FPM on Ubuntu: A Complete Step-by-Step Production Guide
  • Complete Step-by-Step Guide to Configure Apache Event MPM, Create index.php, Set Up VirtualHost, and Fix Ubuntu Default Page
  • Convert XAMPP Apache to Event MPM + System PHP-FPM
  • The Gateway to System Observability Engineering (MOE)
  • How to Finetune Apache and Prove It Works: A Real-World Guide to Testing Performance, Concurrency, HTTP/2, Memory, CPU, and Security
  • Building a High-Performance Apache Event MPM + PHP-FPM + MariaDB Stack (Advanced Server Optimization Guide)
  • Master Infrastructure as Code: The Complete Hashicorp Terraform Associate Guide
  • Building a High-Performance Apache Server with Event MPM + PHP-FPM (Step-by-Step Guide)

Recent Comments

  1. emmy day on SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘provider’ in ‘field list’
  2. digital banking on Complete Tutorial: Setting Up Laravel Telescope Correctly (Windows + XAMPP + Custom Domain)
  3. SAHIL DHINGRA on How to Uninstall Xampp from your machine when it is not visible in Control panel programs & Feature ?
  4. Abhishek on MySQL: List of Comprehensive List of approach to secure MySQL servers.
  5. Kristina on Best practices to followed in .httacess to avoid DDOS attack?

Archives

  • April 2026
  • March 2026
  • February 2026
  • January 2026
  • December 2025
  • November 2025
  • October 2025
  • September 2025
  • August 2025
  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022

Categories

  • Ai
  • AI Blogging
  • AiOps
  • ajax
  • Android Studio
  • Antimalware
  • Antivirus
  • Apache
  • Api
  • API Security
  • Api Testing
  • APK
  • Aws
  • Bike Rental Services
  • ChatGPT
  • Code Linting
  • Composer
  • cPanel
  • Cyber Threat Intelligence
  • Cybersecurity
  • Data Loss Prevention
  • Database
  • dataops
  • Deception Technology
  • DeepSeek
  • Devops
  • DevSecOps
  • DevTools
  • Digital Asset Management
  • Digital Certificates
  • Docker
  • Drupal
  • emulator
  • Encryption Tools
  • Endpoint Security Tools
  • Error
  • facebook
  • Firewalls
  • Flutter
  • git
  • GITHUB
  • Google Antigravity
  • Google play console
  • Google reCAPTCHA
  • Gradle
  • Guest posting
  • health and fitness
  • IDE
  • Identity and Access Management
  • Incident Response
  • Instagram
  • Intrusion Detection and Prevention Systems
  • jobs
  • Joomla
  • Keycloak
  • Laravel
  • Law News
  • Lawyer Discussion
  • Legal Advice
  • Linkedin
  • Linkedin Api
  • Linux
  • Livewire
  • Mautic
  • Medical Tourism
  • MlOps
  • MobaXterm
  • Mobile Device Management
  • Multi-Factor Authentication
  • MySql
  • Network Traffic Analysis tools
  • Paytm
  • Penetration Testing
  • php
  • PHPMyAdmin
  • Pinterest Api
  • Quora
  • SAST
  • SecOps
  • Secure File Transfer Protocol
  • Security Analytics Tools
  • Security Auditing Tools
  • Security Information and Event Management
  • Seo
  • Server Management Tools
  • Single Sign-On
  • Site Reliability Engineering
  • soft 404
  • software
  • SuiteCRM
  • SysOps
  • Threat Model
  • Twitter
  • Twitter Api
  • ubuntu
  • Uncategorized
  • Virtual Host
  • Virtual Private Networks
  • VPNs
  • Vulnerability Assessment Tools
  • Web Application Firewalls
  • Windows Processor
  • Wordpress
  • WSL (Windows Subsystem for Linux)
  • X.com
  • Xampp
  • Youtube
©2026 DevSecOps Now!!! | WordPress Theme: EcoCoded
wpDiscuz