在ubuntu上启动永远命令来运行js文件

时间:2016-03-16 07:39:38

标签: javascript node.js ubuntu-14.04 forever forever-monitor

我在 ubuntu 的下方路径/var/www/html/node_modules

中安装了永远永远监控

现在,我尝试启动位于此路径/var/www/html/且名称为test.js的文件: forever start test.js

但没有任何反应。我全局安装 forever。我哪里错了?

test.js中的

我有这个js代码:

var http = require('http');

http.createServer(function (request, response) {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('testing. . .\n');
}).listen(8124);

console.log('Server running...');

尝试了此命令ps -eaf | grep node并输出:

root     17101 16778  0 06:32 pts/0    00:00:00 nodejs chat_client.js
root     17318 16778  0 07:07 pts/0    00:00:00 nodejs my_queue_worker.js
root     17326 16778  0 07:08 pts/0    00:00:00 nodejs chat_client.js
root     17808 16778  0 07:50 pts/0    00:00:00 grep --color=auto node

0 个答案:

没有答案