Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Im running a busy web-server and clients are getting lots of Connection Refused messages… Why?

0
Posted

Im running a busy web-server and clients are getting lots of Connection Refused messages… Why?

0

This may be due, most probably, by the small size of A/UX’s listen() backlog queue. This queue is basically the number of pending connections listen will allow. Under A/UX, this value (known as SOMAXCONN) is a measly 5. Since Netscape, for example, send 4 connection-requests per connect, you can see how you would over-reach the queue quickly if your server is busy. Jim Jagielski (jim✉jaguNET.com) has written a small shell-script that uses ‘adb’ to patch the kernel ‘bnet’ module to increase the queue limit from 5 to 32.

0
10

This may be due, most probably, by the small size of A/UX’s listen() backlog queue. This queue is basically the number of pending connections listen will allow. Under A/UX, this value (known as SOMAXCONN) is a measly 5. Since Netscape, for example, send 4 connection-requests per connect, you can see how you would over-reach the queue quickly if your server is busy. Jim Jagielski (jim@jaguNET.com) has written a small shell-script that uses ‘adb’ to patch the kernel ‘bnet’ module to increase the queue limit from 5 to 32. It’s available on jagubox.gsfc.nasa.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123