Reputation: 1146
I am using Resque and Resque scheduler, but when I enter the command resque-web
it is not running. Instead prompting an error:
bash: resque-web: command not found
So how to start this resque-web on my local server.
Upvotes: 3
Views: 5018
Reputation: 379
$ bundle exec resque-web
[Wed Jan 19 22:10:38 +0000 2011] Starting 'resque-web'...
[Wed Jan 19 22:10:38 +0000 2011] trying port 5678...
Couldn't get a file descriptor referring to the console
Anyone know what I should try? I'm on Ubuntu 10.04.1 and would like to get this working in nginx 0.8.53.
Upvotes: 4
Reputation: 3736
It's probably trying to open the default browser and failing to do so. Try using:
$ resque-web -L
Upvotes: 5
Reputation: 1438
bundle exec resque-web if its installed using bundler, it may also perhaps not be in your PATH .Try checking your path variables and locating resque-web.
Upvotes: 3