Hi Centos folks!
I'm trying to get a file with wget from Apache on Centos 3 and it doesnt succed. What could be the cause of this what is the resource that is not available, whats your oppinion?
strace short output --------------------------- read(14, "GET /centos/3/os/i386/heade"..., 8000) = 133 read(5, 0xbfff99f3, 1) = -1 EAGAIN (Resource temporarily unavailable)
strace longer output of the same ------------------------------------------------ writev(14, [{"HTTP/1.1 200 OK\r\nDate: Thu, 17 A"..., 269}], 1) = 269 sendfile(14, 15, [0], 18475) = 18475 setsockopt(14, SOL_TCP, TCP_CORK, [0], 4) = 0 setsockopt(14, SOL_TCP, TCP_NODELAY, [1], 4) = 0 brk(0) = 0x9524000 brk(0x9546000) = 0x9546000 write(9, "192.168.0.4 - - [18/Aug/2006:00"..., 151) = 151 shutdown(14, 1 /* send */) = 0 poll([{fd=14, events=POLLIN}], 1, 2000) = 0 close(14) = 0 read(5, 0xbfffb313, 1) = -1 EAGAIN (Resource temporarily unavailable) close(15) = 0 semop(1048577, 0x79e6bc, 1 <unfinished ...>
Thanks for your input Chris
On Fri, 18 Aug 2006 00:17:52 +0200 "Christian Nygaard" christiannygaard@gmail.com wrote:
strace short output
read(14, "GET /centos/3/os/i386/heade"..., 8000) = 133 read(5, 0xbfff99f3, 1) = -1 EAGAIN (Resource temporarily unavailable)
Use lsof to find out what is fd 5.