I use nohup to run a command from a php application (I have a web page that sends POST request to php server to start a shell script in background).
It's something like
exec('nohup /home/user/test.sh > /home/user/test.log 2>&1 &')
This worked fine when I was using OS X Snow Leopard (OS X 10.6). However, recently I upgraded my MAC to OS X Yosemite (OS X 10.10) and now it doesn't work any more.
In the test.log, I always get the message: nohup can't detach from console: no such file or directory
.
If I just run the same command in bash directly, it works fine. I did a lot of searching, but seems like I can't find anything useful for this issue. What I only see is a discussion regarding Jenkins, it seems like they also see similar issue.
Anyone has any idea about why it starts to fail with Yosemite? Any input will be appreciated.