You can kill Mysql process either from Shell.
1) SSH to your server as root user and run
The above command will give you all Mysql running and sleeping process status then select the sleeping process id and kill it from Mysql prompt.
Quote:
# mysql
mysql> kill process id no ;
mysql> \q
|