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

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -