In Windows, when I stop tomcat, the application will release the hold on database, since the application will stop with tomcat... But in Ubuntu, even if I stop the tomcat application, it's not releasing access to database.
I tried with
sudo /etc/init.d/tomcat6 stop
sudo service tomcat6 stop
I can't use pkill, because if I kill the process, even the connection to database server gets released. I need to start it manually. I only want to release access to the database from application. How can I do it?
Is there anywhere tomcat is holding the application? Or any other process there which is on hold?
What creates the difference between Windows and Ubuntu?