2012/6/14 Miguel González Castaños :
> Dear all,
>
> Our developer has set a cronjob similar to this:
>
> wget -T 0 http://ourserver.com/email_sender
>
> which calls a javabean to check pending emails to send in a database and
> actually send them.
>
> I'm concerned about this, since I have rea
- Mensaje original -
De: Darryl Lewis
Para: Tomcat Users List ; Miguel Gonzalez
CC:
Enviado: Jueves 14 de junio de 2012 9:40
Asunto: RE: wget and Tomcat resources
>Depending on what OS you are using, if you use either
>ps -ef
> or
> ps -aux
Nope, with those command
:06 PM
To: Tomcat Users List
Subject: Re: wget and Tomcat resources
- Mensaje original -
De: Darryl Lewis
Para: Tomcat Users List
CC:
Enviado: Jueves 14 de junio de 2012 2:51
Asunto: RE: wget and Tomcat resources
>Have a look on the box running the script to see if there are a
- Mensaje original -
De: Darryl Lewis
Para: Tomcat Users List
CC:
Enviado: Jueves 14 de junio de 2012 2:51
Asunto: RE: wget and Tomcat resources
>Have a look on the box running the script to see if there are a lot of these
>wget jobs sitting there. My guess is that there i
The -T 0 options limits disables the timeout, so it will hold the connection
open until it gets a response.
Personally, I'd remove it as if the 'ourserver' fails to respond (busy, network
issues, solar flares), that wget job will sit on the calling server forever.
The default is 900 seconds, wh