2012-03-07 18 views
6

私はfollingコマンドを使用してthinを再起動しようとしています。Ruby on RailsアプリケーションでThinを再起動するとエラーが発生する

ここ
rackup: /root/SEHabitat/config.ru 
pid: /tmp/pids/thin.pid 
wait: 30 
timeout: 600 
log: /root/SEHabitat/log/thin.log 
max_conns: 1024 
require: [] 

max_persistent_conns: 512 
environment: production 
servers: 3 
daemonize: true 
#chdir: /root/SEHabitat 
socket: /tmp/thin.sock 
#port: 3000 

は出力です:

thin restart -c config/thin.yml 

はここthin.ymlの内容だ

/usr/lib/ruby/gems/1.8/gems/thin-1.2.11/lib/thin/runner.rb:171:in `chdir': Not a directory - /root/SEHabitat/config/thin.yml (Errno::ENOTDIR) 
from /usr/lib/ruby/gems/1.8/gems/thin-1.2.11/lib/thin/runner.rb:171:in `run_command' 
from /usr/lib/ruby/gems/1.8/gems/thin-1.2.11/lib/thin/runner.rb:151:in `run!' 
from /usr/lib/ruby/gems/1.8/gems/thin-1.2.11/bin/thin:6 
from /usr/bin/thin:19:in `load' 
from /usr/bin/thin:19 
+0

config/thin.ymlの内容を表示 – Gacha

+0

私はthin.ymlの内容を表示するように編集しました、ありがとう! –

答えて

8

オプション "-c" は、ディレクトリを変更することであるあなたがupercase使用する必要があります「 - C "で設定ファイルを指定します。 LIKE thin config -C /etc/thin/myapp.yml -c /var/

+1

うわー、私はこれを投稿する前に-Cを試しておくべきだった。ありがとうございます –

+0

@ IanMasonは答えを受け入れてください。 – shingara

関連する問題