Re: Reducing the timeout on a TCP connection

2006-08-07 Thread Igor Robul
On Tue, Aug 01, 2006 at 03:21:07PM -0400, Bill Moran wrote: In response to Ted Mittelstaedt [EMAIL PROTECTED]: This is why the snmp protocol uses UDP, Bill. You need to use something other than TCP for monitoring. Well ... if I'm monitoring a server that uses TCP (PostgreSQL) I

Reducing the timeout on a TCP connection

2006-08-01 Thread Bill Moran
I'm writing some monitoring scripts, and I'm having some trouble because the TCP seems to wait 90 seconds before giving up on initiating a connection. (The script is in PHP, testing a PostgreSQL database. Neither PHP nor libpq (which PHP's PostgreSQL support is based on) seem to have any

Re: Reducing the timeout on a TCP connection

2006-08-01 Thread Ted Mittelstaedt
This is why the snmp protocol uses UDP, Bill. You need to use something other than TCP for monitoring. Ted - Original Message - From: Bill Moran [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 12:02 PM Subject: Reducing the timeout on a TCP connection I'm

Re: Reducing the timeout on a TCP connection

2006-08-01 Thread Bill Moran
to really do it right. I'm just trying to establish exactly how dirty it's going to be. Thanks for the input. - Original Message - From: Bill Moran [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 12:02 PM Subject: Reducing the timeout on a TCP connection I'm

Re: Reducing the timeout on a TCP connection

2006-08-01 Thread Philip Hallstrom
I'm writing some monitoring scripts, and I'm having some trouble because the TCP seems to wait 90 seconds before giving up on initiating a connection. (The script is in PHP, testing a PostgreSQL database. Neither PHP nor libpq (which PHP's PostgreSQL support is based on) seem to have any

Re: Reducing the timeout on a TCP connection

2006-08-01 Thread Ted Mittelstaedt
- Original Message - From: Bill Moran [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 12:21 PM Subject: Re: Reducing the timeout on a TCP connection In response to Ted Mittelstaedt [EMAIL PROTECTED]: This is why the snmp protocol uses UDP, Bill. You need

Re: Reducing the timeout on a TCP connection

2006-08-01 Thread Dan Nelson
In the last episode (Aug 01), Bill Moran said: In response to Ted Mittelstaedt [EMAIL PROTECTED]: This is why the snmp protocol uses UDP, Bill. You need to use something other than TCP for monitoring. Well ... if I'm monitoring a server that uses TCP (PostgreSQL) I can't rightly

Re: Reducing the timeout on a TCP connection

2006-08-01 Thread Bill Moran
In response to Philip Hallstrom [EMAIL PROTECTED]: I'm writing some monitoring scripts, and I'm having some trouble because the TCP seems to wait 90 seconds before giving up on initiating a connection. (The script is in PHP, testing a PostgreSQL database. Neither PHP nor libpq (which