4

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?

at0S
  • 4,522
  • 2
  • 14
  • 10
Gerald Sihotang
  • 265
  • 5
  • 18

3 Answers3

6

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
Imran Faruqi
  • 663
  • 9
  • 19
4

I also had this issue so for anyone looking for an answer to fix the panel rather than using taskkill from cmd here is why this is happening:

The XAMPP Control panel you have installed is 32bit, while upgrading your MariaDB by following this method you downloaded the 64bit MariaDb version. That is why the XAMPP panel will not stop the MySQL process.

Download the 32bit version of MariaDB and re-do the installation process and it should be all sorted.

Neco Horne
  • 148
  • 2
  • 8
1

Open up cmd.exe(PORT= your port number)

Step 1

netstat -ano | findstr :<PORT>

Step 2

taskkill /PID <PID> /F

Rocky
  • 11
  • 2
  • While this code may solve the question, [including an explanation](//meta.stackexchange.com/q/114762) of how and why this solves the problem would really help to improve the quality of your post, and probably result in more up-votes. Remember that you are answering the question for readers in the future, not just the person asking now. Please [edit] your answer to add explanations and give an indication of what limitations and assumptions apply. – Yunnosch Feb 09 '21 at 12:01