phpnode.jsshell-execgnu-screenproc-open

Trouble with launching node inside a screen session via PHP


So to start; I am trying to launch a node application via PHP. I created a script that can check if the node application is running, close it and start it. But I have some trouble with using screen with PHP.

Now before I carry on, comments about how I shouldn't do it won't help, I need to have it launched via PHP, due to it working alongside a website, and I want our client to be able to change settings, which will relaunch the application (unless you have another idea).

I am currently using the command:

screen -dmS NODEJS node main.js 121016

Now I can launch node, and get the output (as long as I add a process.exit somewhere so PHP/Node doesn't run forever). I am already in the correct directory also, I am using this code to launch it:

$out = shell_exec('screen -dmS NODEJS node main.js 121016');
var_dump($out);

But it is not creating the screen session. I have also tried:

$proc = proc_open('screen -dmS NODEJS node main.js 121016', $this->pipe_spec, $pipes);

I also tried to use exec and the back ticks but I am fairly certain the back ticks are the same as shell_exec?

Anyway I am completely lost, and am not sure what else I can do. I don't want node constantly running, which is why I want it to launch when you click save in the manager (in php), and then it closes/stops itself when it has completed it's tasks.

Any help would go a long way, I have spent hours trying to work it out, but I am getting no where... thanks anyway.


Solution

  • An update on this for anyone interested.

    The issue was caused because I wasn't managing the pipes correctly, and was not sending the stdOut pipe. The problem occurred mainly when I tried to remove screen as it was not giving me the correct PID.

    An update on what I used in the end:

    node main.js > /dev/null 2> logs/app-error.log & echo $!
    

    The last one '2>' I was not managing correctly.