On Tue, Feb 14, 2023 at 9:50 AM HYVERNAT Philippe <[email protected]> wrote:
> In complement, we have many error like this : > > I follow recommendations from the list to solve this issue but never works. > > > > sogod [89977]: <0x0x804808158[SOGoCache]> an error occurred when caching > value for key '/Users/[email protected]/Calendar/personal': "SERVER HAS > FAILED AND IS DISABLED UNTIL TIMED RETRY" > For starters, may I please request you to try and adhere to the following guideline when communicating on mailing lists: 1. https://support.google.com/a/users/answer/9283192#better-conversations I am mostly interested in replying inline and NOT top-posting. Thank you very much. Now, looking at your captured error, it would appear that you have a problem with caching and that problem lies with memcached, because that is where caching is done. On FreeBSD which I believe you are familiar with, you can do one of two things: 1. Log all queries to memcached. You do this by adding -vvv (the number of v's depend on the verbosity you want) to memcached_flags in rc.conf and restarting memcached. I'd also try and give Memcached a little more RAM to use with -m 128 2. Capture these queries in it's own file by adding a specific logging config to /etc/syslog.conf: !memcached *.* /var/log/memcached.log #please touch this file! Then restart syslogd with: kill -HUP `cat /var/run/syslog.pid` >From there, for every entry about caching in sogo.log, check for a corresponding entry in memcached.log. Hopefully, you will nail the problem by deducing a solution. Sorry for the lecture. I just did not want to make assumptions that you know what I wanted you to do :) -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254 7 3200 0004/+254 7 2274 3223 "Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-)
