On Tue, Sep 14, 2010 at 12:36 AM, Silviu <[email protected]> wrote:
> command=beanstalkd -b -l 127.0.0.1 -p 11963

Yep, this is the culprit. You can try running this command directly to
see what happens. As a general rule, if it runs okay from the command
line, it should run under supervisord. In this case:

    $ beanstalkd -b -l 127.0.0.1 -p 11963
    beanstalkd: unknown option: 127.0.0.1
    Use: beanstalkd [OPTIONS]

    Options:
     ...
    $

In this case, even this message might be confusing. The problem is
that `-b` takes a parameter, the name of the directory to put binlog
files in. Here beanstalkd is interpreting your "-l" as the name of a
directory, then complaining about the next argument.

kr

-- 
You received this message because you are subscribed to the Google Groups 
"beanstalk-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/beanstalk-talk?hl=en.

Reply via email to