Langsung ke konten utama

Postingan

Menampilkan postingan dari Desember, 2010

always show icmpSend: send: (96) Destination address required

this is another history that i use squid. after install squid on my solaris box. i'm facing another problem. my cache.log always show warning like this, 2010/12/28 18:22:01| icmpSend: send: (96) Destination address required 2010/12/28 18:22:02| icmpSend: send: (96) Destination address required 2010/12/28 18:22:02| icmpSend: send: (96) Destination address required 2010/12/28 18:22:02| icmpSend: send: (96) Destination address required 2010/12/28 18:22:03| icmpSend: send: (96) Destination address required oh no, with this, i can not see more information in log. I have to find why this happen, and how to make this solve. after asking to friend and also googling it, I found the problem. problem come from file that call pinger. this is one of squid program that you can find in libexec directory. by default, this program is in read and executable permission. so, it need to be change into 4555 permission. here is the step go to libexec on your squid directory, and make sure ...

Problem running out of filedescriptors

This time, I would like tell how we handled running out of filedescriptors on squid. as we know, squid is a proxy server. as a proxy server, squid will try to cache all web that access by client. for the server which handle so much client, there will be problem with file descriptor. as far as i know, by default, today operating system could handled 1024 file descriptor, and squid follow by default that rule. you can see how much your operating system handled maximum file open by using ulimit command ulimit -Hn 65536 right now, I use solaris 10. for x86 operating system. If I run ulimit command, it will show 65536. that's mean, my server can handled maximum 65536. but yesterday, i got my squid log warning like this WARNING! Your cache is running out of filedescriptors well searching on google, I found that i have to recompiled my squid. preety weird you know, since I 'm not compile squid from the source. I use webstack squid. so, I tried to add single script on squid....