0

我已经使用安装了 beanstalkd

sudo apt-get install beanstalkd 

安装了 beanstalkd 1.7 版

现在开始我正在使用命令的 beanstalkd 进程

sudo beanstalkd -d -l 127.0.0.1 -p 11300 -z 1000000

我收到回复

beanstalkd: unknown flag: -d
Use: beanstalkd [OPTIONS]

Options:
 -b DIR   wal directory
 -f MS    fsync at most once every MS milliseconds (use -f0 for "always fsync")
 -F       never fsync (default)
 -l ADDR  listen on address (default is 0.0.0.0)
 -p PORT  listen on port (default is 11300)
 -u USER  become user and group
 -z BYTES set the maximum job size in bytes (default is 65535)
 -s BYTES set the size of each wal file (default is 10485760)
            (will be rounded up to a multiple of 512 bytes)
 -c       compact the binlog (default)
 -n       do not compact the binlog
 -v       show version information
 -V       increase verbosity
 -h       show this help
4

1 回答 1

2

-d用于将 Beanstalkd '守护'到后台,但它已被贬值,现在被删除。

BeanstalkD git repo中有一些示例,用于使用通用系统工具将其作为服务运行。例如,在 Ubuntu 上,您可能会使用“Upstart”系统。

于 2013-01-31T10:15:54.343 回答