Eric Evans wrote: > >Because I was having so much difficulty with my old, established Mailman >installation on one of our Suns, I decided to try installing Mailman on a >different machine to see if I get better results there. I've installed the >latest version of Mailman but when I try running mailmanctl to start up the >qrunner, I get the following message: > >Traceback (most recent call last): > File "bin/mailmanctl", line 547, in ? > main() > File "bin/mailmanctl", line 410, in main > fp = open(mm_cfg.PIDFILE, 'w') >IOError: [Errno 13] Permission denied: >'/usr/local/mailman/data/master-qrunner.pid' > >I've checked the permissions with check_perms and there are no permissions >problems indicated. Anybody have any idea what is going on here?
The user that ran bin/mailmanctl does not have permission to create and/or write to the file '/usr/local/mailman/data/master-qrunner.pid'. the bin/* scripts are normally not setgid which means you have to run bin/mailmanctl as a user (e.g. mailman) that has permission. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
