1832234 Members
2747 Online
110041 Solutions
New Discussion

service

 
rmedidi
Contributor

service

Hi all

I want to run a tomcat service at 10.30 am
and i want to stop that service at 11.00 am

Help me how i can do this in linux/fedora core 3

thnx
best regards
xyz
1 REPLY 1
Vitaly Karasik_1
Honored Contributor

Re: service

>crontab -e

30 10 * * * /etc/init.d/tomcat start
00 11 * * * /etc/init.d/tomcat stop

save (:wq)


PS: and don't forget about assigning points! :-|