Created
September 20, 2013 10:06
-
-
Save alexey-detr/6635504 to your computer and use it in GitHub Desktop.
Default beanstalkd start config with persistence.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Defaults for the beanstalkd init script, /etc/init.d/beanstalkd on | |
| ## Debian systems. Append ``-b /var/lib/beanstalkd'' for persistent | |
| ## storage. | |
| BEANSTALKD_LISTEN_ADDR=127.0.0.1 | |
| BEANSTALKD_LISTEN_PORT=11300 | |
| DAEMON_OPTS="-l $BEANSTALKD_LISTEN_ADDR -p $BEANSTALKD_LISTEN_PORT -b /var/lib/beanstalkd" | |
| ## Uncomment to enable startup during boot. | |
| START=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment