Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start Sidekiq in RubyMine?

I'm using RubyMine 6.3. I tried to configure Sidekiq in RubyMine but I can't start it.

How would I configure and start Sidekiq in RubyMine?

like image 623
Kanna Avatar asked May 05 '14 07:05

Kanna


People also ask

How do I turn on Sidekiq?

To run sidekiq, you will need to open a terminal, navigate to your application's directory, and start the sidekiq process, exactly as you would start a web server for the application itself. When the command executes you will see a message that sidekiq has started.

How do I run Sidekiq on Ubuntu?

Make sure you have given the correct path of your bundler for ExecStart in order to start the process. Save it as sidekiq. service and run systemctl enable sidekiq . Then we can manage the process using the commands systemctl start sidekiq , systemctl stop sidekiq , and systemctl restart sidekiq .

How do I test Sidekiq locally?

On the browser, goto ==> http://localhost:{port}/sidekiq/recurring-jobs . where {port} is the port your application is running in. You will see the list of scheduled jobs for your application and some other details about it. Show activity on this post.


1 Answers

  1. Go to Run/Debug Configurations
  2. Add a new Gem Command
  3. Enter 'sidekiq' as the Gem name and Executable name
  4. Check 'Run the script in the contexst of bundle (bundle exec) under the 'Bundler' tab
  5. Click 'Apply' and then run it.

enter image description here

like image 89
coderberry Avatar answered Sep 30 '22 18:09

coderberry