nohup: ignoring input and appending output to 'nohup.out'

nohup java -jar xxx.jar &
提示nohup: ignoring input and appending output to 'nohup.out'

正确做法:在当shell中提示了nohup成功后还需要按终端上键盘任意键退回到shell输入命令窗口,然后通过在shell中输入exit来退出终端;

错误做法:每次在nohup执行成功后直接点关闭程序按钮关闭终端.。所以这时候会断掉该命令所对应的session,导致nohup对应的进程被通知需要一起shutdown。

你可能感兴趣的:(nohup: ignoring input and appending output to 'nohup.out')