PM2 管理 PHP 脚本 - 集群模式
PM2 Managing PHP Script - Cluster mode
目前我正在使用 PM2 成功管理一些 PHP 守护进程(单个实例),而且,到目前为止一切顺利!
使用 PM2 并在管理 Node.js/IO.js 应用程序时,我可以毫无压力地在 PM2 上以集群模式启动它们!提到的 php 守护进程不会发生同样的情况!
那么,首先,是否有可能 manage/launch 使用 PM2 的 PHP 脚本的集群实例(或者 PM2 功能是否仅在 Node.js/IO 上可用)。 js 脚本)?
如果是这样(可能),需要什么特殊的 "tuneups" 才能将 PHP 脚本与 PM2 聚类!?
在尝试启动一些 pm2 start xxx.php -i 2 --name XXX
时,我在错误日志路径中收到以下错误:
SyntaxError: Unexpected token <
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function._load (/usr/local/lib/node_modules/pm2/node_modules/pmx/lib/transaction.js:62:21)
at /usr/local/lib/node_modules/pm2/lib/ProcessContainer.js:200:23
at /usr/local/lib/node_modules/pm2/node_modules/async/lib/async.js:52:16
at /usr/local/lib/node_modules/pm2/node_modules/async/lib/async.js:1209:30
at WriteStream.<anonymous> (/usr/local/lib/node_modules/pm2/lib/Utility.js:126:13)
at WriteStream.EventEmitter.emit (events.js:95:17)
...这让我相信它甚至无法解析给定的 PHP 文件!
在此先感谢您的帮助!
目前我正在使用 PM2 成功管理一些 PHP 守护进程(单个实例),而且,到目前为止一切顺利!
使用 PM2 并在管理 Node.js/IO.js 应用程序时,我可以毫无压力地在 PM2 上以集群模式启动它们!提到的 php 守护进程不会发生同样的情况!
那么,首先,是否有可能 manage/launch 使用 PM2 的 PHP 脚本的集群实例(或者 PM2 功能是否仅在 Node.js/IO 上可用)。 js 脚本)?
如果是这样(可能),需要什么特殊的 "tuneups" 才能将 PHP 脚本与 PM2 聚类!?
在尝试启动一些 pm2 start xxx.php -i 2 --name XXX
时,我在错误日志路径中收到以下错误:
SyntaxError: Unexpected token <
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function._load (/usr/local/lib/node_modules/pm2/node_modules/pmx/lib/transaction.js:62:21)
at /usr/local/lib/node_modules/pm2/lib/ProcessContainer.js:200:23
at /usr/local/lib/node_modules/pm2/node_modules/async/lib/async.js:52:16
at /usr/local/lib/node_modules/pm2/node_modules/async/lib/async.js:1209:30
at WriteStream.<anonymous> (/usr/local/lib/node_modules/pm2/lib/Utility.js:126:13)
at WriteStream.EventEmitter.emit (events.js:95:17)
...这让我相信它甚至无法解析给定的 PHP 文件!
在此先感谢您的帮助!