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
Post a Comment