0

After the installation of beanstalkd on my ubuntu 13.04

I run "beanstalkd -l 127.0.0.1 -p 11300" command to start it

CLI returned:

beanstalkd: net.c:119 in make_server_socket: bind(): Address already in use
beanstalkd: main.c:64 in main: make_server_socket()

Please what can i do? i'm new to this queue system.

Alister Bulman
  • 34,482
  • 9
  • 71
  • 110
  • 2
    "Address already in use" means you already have a copy of it running. Look for it with "pgrep -lf beanstalkd" and kill it, if you want to. – Alister Bulman May 30 '13 at 16:02

1 Answers1

2

If you don't found process as mention by @Alister Bulman

Maybe some other service is using port 11300 Try to start with another port

ex:

beanstalkd -l 127.0.0.1 -p 11345
zinuzoid
  • 337
  • 8
  • 14