Rails thin stop using pid -


i have rails thin server running on imac. normally, ctl-c stop it. but, terminal windows got closed , i'm trying stop thin.

i tried this:

$ thin stop 

and got this:

no pid found in tmp/pids/thin.pid 

but, pid tmp/pids/server.pid

i've tried this:

$ thin stop -c tmp/pids/server.pid 

but, this:

undefined method `each' 8395:fixnum (nomethoderror) 

thanks help!

just current thin pid:

cat tmp/pids/server.pid 

it give current pid instance 6458. issue a:

kill -9 6458 

Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -