How can I interrupt the mysqld front process? [closed]
I want to ask, how is it possible to interrupt a simple mysqld command in the terminal. By a mistake I typed in mysqld in the console and press enter. Now I get the Note that mysqld starting as a process (Process ID). How can I interrupt such a command process in the future? CTL - C, Z, \ and so on are not working here?
If you have a answer, it would be great to explain it also.
Solution 1:
connect a second time and kill it if its local, open a second terminal.
you can use
ps auxwww|grep mysql
kill -9 pid
or if killall is available
killall -9 mysqld