我正在使用Resque和Resque調度程序,但是當我輸入命令resque-web
時,它未運行。相反,提示錯誤:Resque插件的resque-web未運行
bash: resque-web: command not found
So how to start this resque-web on my local server.
我正在使用Resque和Resque調度程序,但是當我輸入命令resque-web
時,它未運行。相反,提示錯誤:Resque插件的resque-web未運行
bash: resque-web: command not found
So how to start this resque-web on my local server.
這可能是試圖打開默認瀏覽器,並沒有這樣做。嘗試使用:
$ resque的Web -L
束EXEC resque的Web如果使用捆綁安裝,它也可能不是在您的PATH。嘗試檢查你的路徑變量和定位resque的Web。
$ 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
任何人都知道我應該試試嗎?我在Ubuntu 10.04.1上,希望能在nginx 0.8.53中使用它。
發出該命令後,您是否嘗試過'ps aux | grep resque-web'來查看resque-web是否真的在運行?另外:您將能夠將您的瀏覽器指向http://192.168.1.1:5678/overview,其中「192.168.1.1」是您的i.p.地址。這顯示在您發出「rails server」命令的控制檯中。 – Tass 2011-06-30 21:41:09
我也有同樣的問題。 resque-web不會觸發瀏覽器,而是在瀏覽器中輸入127.0.0.1:5678加載resque-web sinatra應用程序。任何想法爲什麼這是發生? – Gagan 2011-08-29 07:18:41
@ Gagan,你是否假設從控制檯發佈'resque-web'會爲你打開一個瀏覽器?發出'resque-web'或者'bundle exec resque-web'會啓動一個resque-web實例,打開一個瀏覽器並輸入正確的地址是由你決定的。 – Tass 2011-09-14 19:49:47
有你的寶石/ bin中你的道路? – shingara 2010-10-08 07:56:37
這可能有助於瞭解您發佈的命令。你應該能夠發出'resque-web'或'bundle exec resque-web'。一旦你發出這個命令,你應該會看到類似於kbighorse答案的文本。查看我的導航到網頁界面頁面的說明。 – Tass 2011-06-30 21:50:14
我不得不使用bundle exec,因爲resque是通過捆綁器爲我安裝的gem – 2012-09-07 15:20:37