dongshu9458 2017-05-23 08:42
浏览 43
已采纳

通过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.

  • 写回答

1条回答 默认 最新

  • dongzhi9574 2017-11-07 10:41
    关注

    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?