nohup
以下のように使用して、バックグラウンドでアプリケーションを開始しています-
root@phx5qa01c:/bezook# nohup java -jar ./exhibitor-1.5.1/lib/exhibitor-1.5.1-jar-with-dependencies.jar -c file --fsconfigdir /opt/exhibitor/conf --hostname phx5qa01c.phx.qa.host.com > exhibitor.out &
[1] 30781
root@phx5qa01c:/bezook# nohup: ignoring input and redirecting stderr to stdout
しかし、私はこのメッセージを見るたびに-
nohup: ignoring input and redirecting stderr to stdout
このメッセージが表示された場合、問題はありますか?それはどういう意味ですか、どうすれば回避できますか?
/tmp/test.out
する代わりにを使用できますexhibitor.out
。申し訳ありませんが、私はこれらの事にはかなり新しいですと...ばかな質問を尋ねるために
2>&1
ですか?
nohup java -jar blaa bla >/tmp/test.out 2>&1 &