kajal ojha
kajal ojha

Reputation: 1278

Unicorn restart error

When I tried to restart my unicorn it throws following error

Couldn't reload, starting 'cd /var/www/myapp; bundle exec unicorn -D -c /var/www/myapp/config/unicorn.rb -E production' instead /var/www/myapp/vendor/bundle/ruby/2.2.0/gems/kgio-2.10.0/lib/kgio.rb:31:in `require': incompatible library version - /var/www/myapp/vendor/bundle/ruby/2.2.0/gems/kgio-2.10.0/lib/kgio_ext.so (LoadError)

Can anyone help me out why I am getting this error and how to resolve it?

Upvotes: 3

Views: 437

Answers (1)

fool-dev
fool-dev

Reputation: 7777

I had troubled similar issue & I fixed this below way

listen 3000, reuseport: true

reuseport: true to my unicorn.rb

I think will help you

Upvotes: 0

Related Questions