EN
Windows 11 - stop MySQL / MariaDB server
5 points
In this short article, we would like to show how to stop MySQL / MariaDB server under Windows 11.
Simple steps:
- open command line as administrator (
cmd.exe
), - run the command:
xxxxxxxxxx
1mysqladmin.exe shutdown # mysqladmin.exe shutdown -uroot -proot shutdown
2
3# OR:
4
5mariadb-admin.exe shutdown # mariadb-admin.exe -uroot -proot shutdown
Hint:
The program should may located in:
C:\Program Files\MySQL\MySQL Server XYZ\bin
C:\Program Files\MariaDB XYZ\bin
Simple steps:
- open Task Manager (you can use
Ctrl
+Shift
+Esc
keys), - go to Services tab,
- on the list find MySQL or MariaDB,
- click right mouse button and select Stop option,

Simple steps:
- find Services application in Window Start menu,
- on the list find MySQL or MariaDB,
- click right mouse button and select Stop option.
