• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Tomcat

O

oblongata

Guest
I cant seem to get tomcat to stop starting up on server restart. Every time I restart the server Tomcat loads and slows the server down. Can anyone help with this? I did awhile back edit the server start up file and removed tomcat but it still is loading, perhaps there is another one in plesk or?
 
Yeah, there is one in Plesk:
/usr/local/psa/admin/sbin/tomcatmng --help
/etc/rc.d/init.d/tomcat5 --help
/etc/tomcat5/tomcat5.conf

(could be tomcat4 in your case)

You can stop the service manually or from here:
Plesk CP -> Server-> Services Management
Or remove it completely via /usr/local/psa/admin/bin/autoinstaller interface..
Here is some add.info:
http://kb.swsoft.com/en/1569
http://kb.swsoft.com/en/1570
 
Thanks for your reply,
I am now stopping it manually, but it is a repeating process every time the server is restarted I have to go in and manually stop tomcat-

Perhaps you or anyone can expand on this procedure-

"
via /usr/local/psa/admin/bin/autoinstaller interface.. "

I guess I would rather just stop in from starting on server boot rather then removing it entirely.

Any help appreaciated.

Thanks again
 
Thanks for your reply,
I am now stopping it manually, but it is a repeating process every time the server is restarted I have to go in and manually stop tomcat-

Perhaps you or anyone can expand on this procedure-

"

I guess I would rather just stop in from starting on server boot rather then removing it entirely.

Any help appreaciated.

Thanks again

Try this

Code:
chkconfig `chkconfig --list | grep -i tomcat` off

This will turn off any registered service with tomcat in the name so it will not start on boot.
 
Back
Top