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

后端 未结 1 667
陌清茗
陌清茗 2020-12-13 12:38

I want to start my server through nohup.php but the command is not running and displays following error

nohup:ignoring input and appending output to

1条回答
  •  醉梦人生
    2020-12-13 12:49

    That's not an error - it's normal behavior. It just informs you that once started the in/output is removed from your console.

    To avoid the message you need to start it like

    nohup php server1.php /dev/null &
    

    0 讨论(0)
提交回复
热议问题