I am using ubuntu Jammy release and on my system port no 3306 is unusable since I tried ssh based port forwarding on the same to a different machine. Also while running ps -aux
it shows a strage process for mysqld with pid 2336 which I havent installed locally.
It doesnt allow me to kill the process as normal user. When I kill with sudo it simply restarts this process again. Even on machine restart this process shows up on its own.
It seems to me that this process is started by SSH deamon. One reason I think so is absence of process path in the last column. Any ideas how I can stop this ?
systemd+
in the first column suggests it'ssystemd
that is starting that process and keeping ti going after you kill it ...systemctl status mysqld
may shed some light on your lack of understanding – Jaromanda X May 29 '23 at 05:17systemctl status mysqld
throws messageUnit mysqld.service could not be found.
– Gautam May 29 '23 at 06:39mysqld.service
... that was a guess on my part ... I would bet that it is some systemd service though - pretty easy to find out what service it is though – Jaromanda X May 29 '23 at 06:51