47 messages in net.sourceforge.lists.courier-usersRe: [courier-users] Failed to create ...
FromSent OnAttachments
Jonathan ChongDec 27, 2005 4:14 pm 
Gordon MessmerDec 27, 2005 4:35 pm 
Sam VarshavchikDec 27, 2005 7:08 pm 
Jonathan ChongDec 28, 2005 5:39 am 
Gordon MessmerDec 28, 2005 8:04 am 
Jonathan ChongDec 28, 2005 8:12 am 
Gordon MessmerDec 28, 2005 8:36 am 
Jeff JansenDec 28, 2005 8:59 am 
Jonathan ChongDec 28, 2005 10:04 am 
Jeff JansenDec 28, 2005 10:29 am 
Jonathan ChongDec 28, 2005 10:33 am 
Jonathan ChongDec 28, 2005 10:38 am 
Gordon MessmerDec 28, 2005 11:00 am 
Tony EarnshawDec 28, 2005 11:01 am 
Jeff JansenDec 28, 2005 11:42 am 
Gordon MessmerDec 28, 2005 11:52 am 
Jeff JansenDec 28, 2005 12:22 pm 
Jonathan ChongDec 28, 2005 12:55 pm 
Tony EarnshawDec 28, 2005 1:34 pm 
Jonathan ChongDec 28, 2005 1:55 pm 
Tony EarnshawDec 28, 2005 2:00 pm 
Jonathan ChongDec 28, 2005 2:49 pm 
Jerry AmundsonDec 28, 2005 6:25 pm 
Tony EarnshawDec 28, 2005 11:32 pm 
Jonathan ChongDec 29, 2005 12:01 am 
Jonathan ChongDec 29, 2005 3:24 am 
Tony EarnshawDec 29, 2005 6:05 am 
Jonathan ChongDec 29, 2005 6:57 am 
Jonathan ChongDec 29, 2005 7:03 am 
Tony EarnshawDec 29, 2005 7:32 am 
Tony EarnshawDec 29, 2005 7:37 am 
Jerry AmundsonDec 29, 2005 8:27 am 
Tony EarnshawDec 29, 2005 8:38 am 
Jonathan ChongDec 29, 2005 8:42 am 
Tony EarnshawDec 29, 2005 8:51 am 
Jerry AmundsonDec 29, 2005 8:55 am 
Jerry AmundsonDec 29, 2005 8:59 am 
Jerry AmundsonDec 29, 2005 9:07 am 
Tony EarnshawDec 29, 2005 9:15 am 
Tony EarnshawDec 29, 2005 10:09 am 
Jerry AmundsonDec 29, 2005 10:33 am 
Binand SethumadhavanDec 29, 2005 11:28 am 
Gordon MessmerDec 29, 2005 11:32 am 
Jonathan ChongDec 29, 2005 12:57 pm 
Tony EarnshawDec 29, 2005 4:57 pm 
Jonathan ChongJan 5, 2006 12:50 am 
Sam VarshavchikJan 5, 2006 3:52 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] Failed to create cache file: maildirwatch errorActions...
From:Jonathan Chong (ashb@gmail.com)
Date:Dec 28, 2005 10:04:38 am
List:net.sourceforge.lists.courier-users

Thanks for that, it's very comprehensive and I appreciate it.

This is my sgi_fam file, it's set to on already.

# default: on # description: FAM is a file monitoring daemon. It can \ # be used to get reports when files change. service sgi_fam { disable = no type = RPC UNLISTED socket_type = stream user = root group = nobody server = /usr/bin/fam wait = yes protocol = tcp rpc_version = 2 rpc_number = 391002 bind = 127.0.0.1 }

I've run "chkconfig --add xinetd" and "chkconfig xinetd" but they both don't return anything.

Running "chkconfig --list" and the xinetd line at the end returns this:

xinetd based services: krb5-telnet: off rsync: off eklogin: off gssftp: off klogin: off chargen-udp: off kshell: off auth: on chargen: off daytime-udp: off daytime: off echo-udp: off echo: off services: off time: off time-udp: off cups-lpd: off sgi_fam: on

The error still occurs. Is there somewhere else I should be looking as well?

Once again, thank you so much for the help.

On 28/12/05, Jeff Jansen <ivb_@sil.org> wrote:

-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1

Jonathan Chong wrote:

-rw-r--r-- 1 root root 392 Dec 10 2004 /etc/xinetd.d/sgi_fam But when I try to run it, it tells me permission denied. Portmap is already running: As far as I can tell, xinetd is a folder that contains the sgi_fam file. Sorry, my Linux knowledge is very limited ...

As it was for all of us when we started. You'll get there. :-)

The sig_fam file is not a program. It is the configuration file for xinetd to know what program to run (and how to run it) when requests come in for this service. This is true for all the files in the /etc/xinetd.d directory.

In order to get fam running, you should put this file back to its original permissions (644), then edit the file and find the line that says "disable = yes" and change the "yes" to "no". This tells xinetd that it CAN run this service. If you don't need fam to be accessible to clients across the network, then you also might want to add "bind = 127.0.0.1" to the list of options in this file as well. This will limit fam service to that one machine only.

Then you need to restart/start xinetd. So run "service xinetd restart". (Don't worry if it can't "stop" correctly - that just means it wasn't on to begin with.) After that you should make sure xinetd is set to run automatically at boot. So run "chkconfig --add xinetd" This will turn it on at boot. You can check what its boot status is by running "chkconfig xinetd" (This works for any service on the machine as well.) Now fam should be running and you shouldn't see the imapd errors anymore in the logs.

Finally, all the xinetd services should be off by default but just in case you should check and make sure you're not running something and didn't realize it. Run "chkconfig --list", which will print out the status of all your services both in the init.d and xinetd.d directories. Scan to the end of the listing (which will be the xinetd services) and make sure they are all say "off". Or you could do something with grep like "grep -e 'disable.*=.*no' /etc/xinetd.d/*" which will print out any files in that directory which are NOT disabled. If you find any services running that you don't expect, then edit that file in the xinetd.d directory and change the "disable = no" to "disable = yes" and then restart xinetd.

HTH. Let us know how it goes.

Jeff Jansen

-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDssRwZxtYeNk78A8RAtETAJ4/Yc/r9RY6FKi+3ny8KFi6LVYhyQCdF+sD LHzHluNY2N9hRue91WN6g+I= =kvYE -----END PGP SIGNATURE-----