beanstalkd
A simple and generic work-queue server. More information: <https://beanstalkd.github.io/>.
Install
- All systems
-
curl cmd.cat/beanstalkd.sh
- Debian
-
apt-get install beanstalkd
- Ubuntu
-
apt-get install beanstalkd
- Alpine
-
apk add beanstalkd
- Kali Linux
-
apt-get install beanstalkd
- Fedora
-
dnf install beanstalkd
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install beanstalkd
- OS X
-
brew install beanstalkd
- Raspbian
-
apt-get install beanstalkd
- Dockerfile
- dockerfile.run/beanstalkd
- Docker
-
docker run cmd.cat/beanstalkd beanstalkd
powered by Commando
A simple and generic work-queue server. More information: <https://beanstalkd.github.io/>.
-
Start Beanstalk, listening on port 11300:
beanstalkd
-
Start Beanstalk listening on a custom port and address:
beanstalkd -l ip_address -p port_number
-
Persist work queues by saving them to disk:
beanstalkd -b path/to/persistence_directory
-
Sync to the persistence directory every 500 milliseconds:
beanstalkd -b path/to/persistence_directory -f 500
© tl;dr; authors and contributors