1

我用流星写了一个简单的应用程序。我使用 demeteorizer 来消除它对流星的依赖。现在,我已将我的 demeteorized 捆绑包上传到 Gandi NodeJS简单托管实例。我可以让它从控制台运行,但是当我重启实例时我不能让它自动运行。

我将默认的 server.js 移到了实例启动时运行的位置。这是它包含的内容:

var http = require("http");

http.createServer(function(req, res) {
    res.writeHead(200, {"Content-Type": "text/html; charset=utf-8"});
    res.end('<!DOCTYPE html><html><meta charset="utf-8"><title>It works' +
            "</title><b>It works!</b><br /><br />This is the server's " +
            "default server.js.");
}).listen(8080);
console.log("Server ready to accept requests on port 8080");

在我的本地机器上运行 demeteorizer,它创建了一个 project.json 文件,我将它与包的其余部分一起上传到 vhosts/default 目录:

hosting-user@Secret-History-Node-Test:~/web/vhosts/default$ more package.json
{
  "name": "secrethistory",
  "description": "secrethistory - automatically converted by Demeteorizer. https
://github.com/onmodulus/demeteorizer",
  "version": "0.0.1",
  "main": "main.js",
  "scripts": {
    "start": "node main.js"
  },
  "engines": {
    "node": "0.10.36"
  },
  "dependencies": {
    "websocket-driver": ">=0.4.0",
    "faye-websocket": "^0.7.3 || ^0.8.0",
    "node-uuid": "^1.4.1",
    "sockjs": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.11.tgz",
    "es5-ext": "~0.9.2",
    "event-emitter": "~0.2.2",
    "next-tick": "0.1.x",
    "memoizee": "~0.2.5",
    "cli-color": "https://registry.npmjs.org/cli-color/-/cli-color-0.2.3.tgz",
    "css-parse": "https://github.com/reworkcss/css-parse/tarball/aa7e23285375ca6

根据 demeteorizer 文档,在启动节点之前,我必须设置一些环境变量。从命令行使用以下命令,我可以成功运行我的应用程序。

export MONGO_URL=mongodb://localhost:27017/secrethistory 
export PORT=8080 
export ROOT_URL=http://localhost:8080
node main

(这些值有点违反直觉,并且与许多 demeteorizer 教程所说的相矛盾,但它直接来自demeteorizer 文档和作品。)

鉴于我对简单托管启动脚本的访问权限有限,我不知道如何在节点启动时启动我的应用程序,也不知道如何在它运行之前设置环境变量。

你能帮我弄清楚如何在 PAAS 实例启动时让我的应用程序运行吗?

更多信息

以下是从实例运行节点的方式:

hosting-user@Secret-History-Node-Test:~/web/vhosts/default$ ps -ef | grep node
5000        73     1  0 06:06 ?        00:00:00 python /srv/admin/scripts/watchd --logfile /srv/data/var/log/www/nodejs-watchd.log --pidfile /srv/run/nodejs/nodejs-watchd.pid --app-logfile /srv/data/var/log/www/nodejs.log --app-dir /srv/data/web/vhosts/default /srv/admin/scripts/nodejs/node-bootstrap.sh
4

2 回答 2

2

最后我通过摆弄弄明白了这一点。虽然我认为可能有更清洁的解决方案。

我将我的环境变量添加到 project.json 中脚本指令的起始行

"start": "MONGO_URL=mongodb://localhost:27017/secrethistory PORT=8080 ROOT_URL=http://localhost:8080 node main.js"

我确认这适用于

npm start

现在,如何在服务器启动时使 npm start 发生?

我将 forever-monitor 安装为 JS 包,但没有安装 CLI,因为我无法从 PAAS 实例的控制台访问系统。

然后我创建了一个简单的 server.js,它在实例启动时自动运行:

var forever = require('forever-monitor');

var child = forever.start(['npm start'], {
    'max': 3,
    'silent' : true
});

欢迎提出建议。

于 2015-02-08T23:12:06.987 回答
0

PORT 环境变量现在默认可用http://wiki.gandi.net/en/simple/instance/nodejs?#general_functioning

于 2015-02-21T17:56:17.663 回答