ノードサーバーを実行するphpスクリプトを作成しました:
<?php
file_put_contents("/var/www/executed.txt", "wykonano");
$url = "http://xxx.pl";
$http = curl_init($url);
curl_setopt($http, CURLOPT_RETURNTRANSFER, FALSE);
$result = curl_exec($http);
$http_status = curl_getinfo($http, CURLINFO_HTTP_CODE);
curl_close($http);
if ($http_status != "200" && $http_status != "301")
{
chdir("/var/www/xxx");
exec("nohup node server >/dev/null 2>&1");
}
コンソールから実行すると: /usr/bin/php /var/www/node-apps.php すべて正常に動作します。しかし、これをcronで実行すると、このファイルは実行されますが、サーバーは実行されません。なんで ?
編集: cron ジョブ:
* * * * * /usr/bin/php /var/www/node-apps.php