I am doing the following in order to shutdown mysqld in order to not have an open 3306
port
sudo mysqladmin -u root -p shutdown
However afterwards when I use netstat, mysqld is still listening on port 3306 just having a new PID. So what is automatically creating a new process and how do I stop it ? pkilling
the process has the same result.
/etc/init.d/mysql stopresulted in being asked to use theservice– StartingOut Sep 21 '11 at 20:22sudo service mysql stopresulted in removingmysqld– StartingOut Sep 21 '11 at 20:23