This guide installs Beanstalkd and runs the work queue server.
sudo apt update
sudo apt install -y beanstalkd
sudo dnf install -y beanstalkd --enablerepo=epel
Edit /etc/default/beanstalkd (Debian/Ubuntu) to set:
START=yes
ADDR=0.0.0.0
PORT=11300
sudo systemctl enable --now beanstalkd
Check that Beanstalkd is running:
sudo systemctl status beanstalkd
Test connectivity:
echo "stats" | nc localhost 11300
See Beanstalkd Configuration for configuration guidance.
Any questions?
Feel free to contact us. Find all contact information on our contact page.
Prefer automation? See Beanstalkd Ansible Setup for an example playbook.
Prefer containers? See Beanstalkd Docker Setup.
See Beanstalkd Security for hardening guidance.