如何在amazon ec2 ubuntu上更新流星应用程序

时间:2013-09-07 18:52:25

标签: ubuntu meteor upstart

我在ubuntu服务器上运行了一个流星应用程序。我正在尝试通过cd将应用程序更新到原始克隆并运行git pull以从github获取最新信息。

然后我运行meteor bundle ../bundle.tgz 然后cd ..tar -zxvf bundle.tgz解压缩它。

这些更改似乎没有得到更新。我甚至尝试完全移除原始包并再次解开它。当我这样做并尝试访问网站Nothing load并且有500错误说无法找到该脚本。

我正在永远使用我的服务器运行,这是我的updstart脚本:

# /etc/init/meteor.conf
start on (local-filesystem)
stop on shutdown

script

        cd /home/ubuntu
        export PORT=80 MONGO_URL=mongodb://localhost:27017/meteor-tutorials ROOT_URL=http://www.ec2-54-211-152-59.compute-1.amazonaws.com
        exec forever start bundle/main.js

end script

当我最初上传应用时,我必须运行sudo service meteor start。 我将如何更新此应用程序?

1 个答案:

答案 0 :(得分:0)

您可以使用我的安装脚本,或查看其来源并选择您需要的内容。对不起,这不是您确切问题的详细解答。

https://github.com/matb33/meteor-ec2-install