Re: [squid-users] squidclient -m PURGE problem...

2008-06-11 Thread Henrik Nordstrom
On ons, 2008-06-11 at 13:47 +0900, Seonkyu Park wrote:
 'squidclient  -p 80 -h 1.1.1.1 http://a.b.c/x.jpg'
 
 I got the result, cache object(x.jpg) successfully deleted.
 
 And then  
 
 'wget http://a.b.c/x.jpg'
 
 I think that Squid will get fresh x.jpg  from origin server.
 But Squid return  503 error.

Squid never returns 503 on it's own on http requests. Sounds like your
web server failed.. (squid uses 504)

This is most likely not related to the purge, except that the cache may
have been hiding the server problem for some time and you didn't notice
until now when the object was removed from the cache.

Regards
Henrik


signature.asc
Description: This is a digitally signed message part


[squid-users] squidclient -m PURGE problem...

2008-06-10 Thread Seonkyu Park
Hello Everyone.

I've been using SQUID for reverse proxy. ( web server accelerator )
I try to make purge system with squidclient program.
For client could get fresh object from SQUID.

'squidclient  -p 80 -h 1.1.1.1 http://a.b.c/x.jpg'

I got the result, cache object(x.jpg) successfully deleted.

And then  

'wget http://a.b.c/x.jpg'

I think that Squid will get fresh x.jpg  from origin server.
But Squid return  503 error.
So I was delete all cache object drirectory  rebuild file system  squid start.
Same result..

If I was purge object then SQUID could fresh object from origin server.

How can I make this ?..

Thanks.