Questions tagged [timeout]

In computing, a timeout is either an error condition or event that occurs when an event exceeds the time frame permitted to it, or the period of time allotted to a given event.

In computing, a timeout is either an error condition or event that occurs when an event exceeds the time frame permitted to it, or the period of time allotted to a given event.

For an example of an event being a timeout, a network timeout [error] occurs when a response is expected from a networked device, but not received within a specified time period.

As an example of a timeout being defined as a period of time, ftp servers often have idle timeouts, after which inactive connections are closed.

603 questions
11
votes
1 answer

Increase disk detection timeout at boot with Linux/Systemd

I have a machine with a lot of disks, and an extra SAS controller in HBA mode. This seems to cause Linux to think for at least 8-10 seconds once in initramfs before the disks actually appear. The timeout for disk detection is 10 seconds. This…
Alex
  • 389
  • 9
  • 23
10
votes
2 answers

Azure closing idle network connections

I'm running a proprietary client/server application on a single instance windows server 2k8R2 azure VM. The client is very dependent on a connection with the server. However if I spend a couple of minutes without any activity, something on the…
NoCarrier
  • 329
  • 2
  • 6
  • 13
10
votes
1 answer

mod_proxy_ajp (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header

I am using mod_proxy_ajp with Tomcat and I receive the following error: (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header How do I fix this?
DD.
  • 3,114
  • 11
  • 35
  • 50
10
votes
1 answer

How do I increase FastCGI read timeout to prevent 504 error on nginx?

I am running a file with considerable amount of coding. It takes approximately 55 seconds to process 500 users, but now I have to process 1000 users. The default timeout is 60 seconds, so I have to increase the FastCGI read timeout. I found this…
rajankaneria
  • 103
  • 1
  • 1
  • 4
10
votes
2 answers

Too many TIME_WAIT state connections!

I've been reading about this everywhere all day, and from what I've gathered, TIME_WAIT is a relatively harmless state. It's supposed to be harmless even when there's too many. But if they're jumping to the numbers I've been seeing for the past 24…
Hamza
  • 101
  • 1
  • 1
  • 3
9
votes
3 answers

AWS EC2 timeout connecting via SSH

I've just started using Amazon's free trial, and followed the "Launch an Amazon EC2 Instance" guide to set up the t2.micro instance, but I'm having trouble connecting to it over SSH. I've set up the inbound rules for the Security Group as to allow…
9
votes
3 answers

ESXcli command timeout at 30 minutes

I am working on a powercli script to loop through each datastore in our environment and reclaim space on the thin provisioned LUNs. All LUNs in the environment are Dell Equal Logic. vCenter version: 5.5.0_1750787 ESXi version: Dell…
Lars
  • 198
  • 1
  • 10
9
votes
1 answer

Root cause of "curl: (56) SSL read: errno -5961" errors

I was evaluating some SSL failures, and noticed that when I use curl to one of the failing sites, I got curl: (56) SSL read: errno -5961; however, my google queries for that error didn't show the reason for the openssl failure. Question: What does…
Mike Pennington
  • 8,305
  • 9
  • 44
  • 87
9
votes
2 answers

tcptrack shows SYN_SENT connections, does that mean the SYN package reached the server?

our server suffered a serious connection timeout problem, so we track tcp connection with tcptrack we found out that, if the client started to connect to the server, tcptrack shows the connection, but in SYN_SENT status, and netstat -nat shows…
xpu
  • 103
  • 1
  • 1
  • 6
9
votes
2 answers

NGINX basic auth timeout?

I've protected a directory with satisfy and basic_auth, but seems that the validation is not stored in a cookie which after some time it's deleted, seems it's ip or something based. So i login once and eve if i keep the website open for half an…
Gabriel
  • 436
  • 2
  • 7
  • 19
9
votes
12 answers

ssh session idle timeout

The Solaris machine we do most of our development on has an annoying habit of timing out SSH sessions. Doesn't matter whether the client is my Ubuntu desktop, my Solaris desktop or my Windows desktop (putty); the common factor is the big Solaris…
Andrew
  • 265
  • 1
  • 4
  • 6
9
votes
2 answers

Apache reaching MaxClients and locking the server

I currently have an Apache2 server running with mpm-prefork and mod_php on a OpenVZ VPS with 512M real / 1024M burstable RAM (no swap). After running some tests, I found that the maximum process size Apache gets is 23M, so I've set MaxClients to 25…
Rodrigo Sieiro
  • 1,191
  • 1
  • 8
  • 10
8
votes
2 answers

Search and Domain in resolv.conf = slow lookups on Ubuntu

I have a machine running ubuntu 10.04 server. I've started getting long (5-10 second) delays when making connections to (some) sites outside of the LAN using tools like curl and wget. Using tcpdump and wireshark, I've found the problem to be in the…
MikeL
  • 183
  • 1
  • 4
8
votes
1 answer

Using curl to make a HEAD request with a hard timeout

I'd like to use curl to send a HTTP HEAD request to a URL to verify that it is working correctly (server is up and sends a successful response). At the end, I need the final HTTP response code returned and URL (after following any redirects).…
jrdioko
  • 567
  • 5
  • 9
  • 18
7
votes
1 answer

How to configure reasonable timeout for nfs?

I have nfs mount to a directory on remote machine. When the remote machine is down or disconnected, any command on the nounted nfs (such as: ls, or open file) is stuck. I want it to just fail in a few seconds if the nfs dir is not available. How…
SHR
  • 293
  • 1
  • 2
  • 10
1
2
3
40 41