gpt4 book ai didi

meteor - 使用永远运行 meteor 生成的节点包的正确语法是什么?

转载 作者:行者123 更新时间:2023-12-04 13:11:44 26 4
gpt4 key购买 nike

在文档中,在您自己的服务器上运行meteor 的过程是运行

meteor bundle bundle.tgz

然后解压这个压缩包..
tar -xzvf bundle.tgz

然后启动一个节点服务器
MONGO_URL=mongodb://localhost:27017/<dbname> PORT=<server_port> ROOT_URL=http://sub.example.com/ node bundle/main.js

我正在尝试使用永远来保持节点服务器正常运行,但是当我运行以下命令(具体细节模糊)时,永远进程不会返回,我必须按 CTRL+C 才能返回命令行 - 非常不持久喜欢。
MONGO_URL=mongodb://localhost:27017/<dbname> PORT=<server_port> ROOT_URL=http://sub.example.com/ forever bundle/main.js

如果我附加一个&符号在后台运行该进程,那么我将返回命令行,一切看起来都很好,但永远不会生成任何日志或 pid 文件,最终永远进程终止。

最佳答案

这对我有用:

export MONGO_URL=mongodb://localhost:27017/<dbname> 
export PORT=<server_port>
export ROOT_URL=http://sub.example.com/
forever start bundle/main.js

关于meteor - 使用永远运行 meteor 生成的节点包的正确语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14529677/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com