如何在Ubuntu的服务器上启动时运行的流星(How to run meteor on startu

2019-08-18 01:48发布

我学习meteorjs,我有一个小小的遥控VPS。

我想要:

  1. 设置自动从git仓库我的流星项目拉动。
  2. 把脚本到其运行我的流星项目作为服务自动启动。

例如

meteor run -p 80 -- production

我的服务器是Ubuntu的12.04

Answer 1:

您应该使用Ubuntu的方式,这是新贵:

http://upstart.ubuntu.com/ http://manpages.ubuntu.com/manpages/lucid/man5/init.5.html

如何定义后台作业:

http://newcome.wordpress.com/2012/02/26/running-programs-as-linux-daemons-using-upstart/

希望能帮助到你 :)

你新贵文件将是或多或少:

# meteorjs - meteorjs job file

description "MeteorJS"
author "Igor S"

# When to start the service
start on runlevel [2345]

# When to stop the service
stop on runlevel [016]

# Automatically restart process if crashed
respawn

# Essentially lets upstart know the process will detach itself to the background
expect fork

# Run before process
pre-start script
        cd PATH_TO_METEOR_APP
        echo ""
end script

# Start the process
exec meteor run -p 80 --help -- production


Answer 2:

这是我做的:

description "meteor app server"
start on runlevel [2345]
stop on runlevel [06]
respawn
respawn limit 10 5
pre-start script
   set -e
   rm -f /path/to/your/app/.meteor/local/db/mongod.lock
end script
exec /bin/su - ec2-user -c '/path/to/your/app/meteor_server.sh'
post-stop script
    pkill -f meteor
end script

meteor_server.sh脚本包含:

cd /path/to/your/app/; meteor run -p 3000 --production

确保chmod +xmeteor_server.sh脚本和路径更改为您的应用程序在3个地点。 当它被停止,它适用于只在服务器上运行一个应用程序流星脚本也杀死所有流星的任务。 我得到了快速运行使用nginx的,但节点这样一个流星应用程序似乎要消耗大量的内存。



Answer 3:

这是我meteorjs.conf文件 - 工作正常。 之前我已经说明一切问题,但这种变异解决这些问题。 希望它可以帮助别人:)

所有EXPORT变量我通过printenv

# meteorjs - meteorjs job file

description "MeteorJS"
author "Alex Babichev"

# When to start the service
start on runlevel [2345]

# When to stop the service
stop on runlevel [016]

# Automatically restart process if crashed
respawn

# Essentially lets upstart know the process will detach itself to the background
expect fork

chdir /home/dev/www/test

script

export MONGO_URL=mongodb://localhost:27017/meteor
export PATH=/opt/local/bin:/opt/local/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
export PWD=/home/sputnik
export NODE_PATH=/usr/lib/nodejs:/usr/lib/node_modules:/usr/share/javascript
export HOME=/home/sputnik

echo "---- start ----"
cd /home/dev/www/test
exec mrt

end script


文章来源: How to run meteor on startup on Ubuntu server