PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Sunday, July 3, 2022

[FIXED] How to stop XAMPP's MySQL Service after updating MariaDB

 July 03, 2022     mysql, service, taskkill, xampp     No comments   

Issue

I've updated my MariaDB to version 10.3.14 using this steps (link)
It has been successfully installed, but when I tried to stop the MySQL Service from XAMPP Control Panel, it won't stop.
The status always shows like this:

[mysql] Attempting to stop MySQL app...


Like the picture below:
img

How can I stop that?


Solution

You can kill the process operating on port 3306.

Type in CMD (Command Prompt) if you have windows:

netstat -ano | findstr :<yourPortNumber>

put your port number in the diamond brackets.

then put the process ID in diamond brackets,

taskkill /PID <typeyourPIDhere> /F


Answered By - Imran Faruqi
Answer Checked By - Gilberto Lyons (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing