red*_*ess 11 ubuntu nginx upstart meteor
编辑
status marybaked
产量
marybaked停止/等待
这是输出/var/log/syslog
:
5月3日16:24:39 marybakedpdx内核:[3464.189563] init:无法生成marybakedpdx主进程:无法找到setuid用户
5月3日16:24:44 marybakedpdx内核:[3469.342062] init:无法生成marybaked主进程:无法找到setuid用户
当我跑步时,start marybaked
我得到:
开始:作业无法启动
当我跑步时,start <anything else>
我得到:
开始:未知工作:
我的/var/logs/upstart
目录中没有marybaked.log日志......这里发生了什么?upstart如何认识到这marybaked
是一项工作并且无法启动它,但是没有为它创建错误日志?
这是我的/etc/init/marybaked.conf
档案:
# upstart service file at /etc/init/marybakedpdx.conf
description "Meteor.js (NodeJS) application"
author "Daniel Speichert <daniel@speichert.pro>"
# When to start the service
start on started mongodb and runlevel [2345]
# When to stop the service
stop on shutdown
# Automatically restart process if crashed
respawn
respawn limit 10 5
# we don't use buil-in log because we use a script below
# console log
# drop root proviliges and switch to mymetorapp user
setuid marybakedpdx
setgid marybakedpdx
script
export PATH=/opt/local/bin:/opt/local/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
export NODE_PATH=/usr/lib/nodejs:/usr/lib/node_modules:/usr/share/javascript
# set to home directory of the user Meteor will be running as
export PWD=/home/marybakedpdx
export HOME=/home/marybakedpdx
# leave as 127.0.0.1 for security
export BIND_IP=127.0.0.1
# the port nginx is proxying requests to
export PORT=8080
# this allows Meteor to figure out correct IP address of visitors
export HTTP_FORWARDED_COUNT=1
# MongoDB connection string using marybakedpdx as database name
export MONGO_URL=mongodb://localhost:27017/marybakedpdx
# The domain name as configured previously as server_name in nginx
export ROOT_URL=http://marybakedpdx.com
# optional JSON config - the contents of file specified by passing "--settings" parameter to meteor command in development mode
export METEOR_SETTINGS='{ "somesetting": "someval", "public": { "othersetting": "anothervalue" } }'
# this is optional: http://docs.meteor.com/#email
# commented out will default to no email being sent
# you must register with MailGun to have a username and password there
# export MAIL_URL=smtp://postmaster@mymetorapp.net:password123@smtp.mailgun.org
# alternatively install "apt-get install default-mta" and uncomment:
# export MAIL_URL=smtp://localhost
exec node /home/marybakedpdx/bundle/main.js >> /home/marybakedpdx/marybakedpdx.log
end script
Run Code Online (Sandbox Code Playgroud)
Mar*_*cny 14
您的新贵文件看起来不错,最有可能发生的事情是您的script
块中的某些内容失败.它应详细说明syslog
.
试着调查一下 /var/log/syslog
为了进一步调试,您还应该尝试touch
各个点的文件,以进一步缩小问题范围.例如:
touch /tmp/marybake0
exec node /home/marybakedpdx/bundle/main.js >> /home/marybakedpdx/marybakedpdx.log
Run Code Online (Sandbox Code Playgroud)
如果文件不存在,touch将创建该文件.
编辑:
从您更新的帖子判断,用户marybakedpdx
不存在.尝试运行以下内容:
adduser marybakedpdx
addgroup marybakedpdx
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
17355 次 |
最近记录: |