在启动时在raspberry pi中使用nodejs时,如何查看控制台

时间:2017-11-25 16:38:07

标签: node.js raspberry-pi startup raspberry-pi3

我在启动时使用Raspberrypi中的NodeJ(rc.local)。我有一些问题,如果NodeJ在启动时运行,我的ftp客户端将无法下载数据。 但如果我自己运行命令行,它将运行良好,并能够通过FTP客户端下载文件。

有没有办法在启动时使用nodejs时查看控制台日志。

我的项目已经非常推迟,请帮助。

提前致谢。

rc.local中

`#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

#sudo neo4j start &
#sudo su pi -c 'sudo neo4j start  < /dev/null  &'
#sudo su pi -c 'sudo /etc/init.d/mysql start < /dev/null &'
sudo su pi -c 'node /home/pi/Desktop/RaspberyryPiLearning/bin/www  < 
/home/pi/Desktop/error.log &'


# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
 printf "My IP address is %s\n" "$_IP"
fi

exit 0

1 个答案:

答案 0 :(得分:1)

您应指定node二进制文件和节点应用的完整路径,例如:sudo su pi -c '/usr/bin/node /home/pi/node_app/index.js

您可以键入which node以获取节点二进制路径

但是,更好的选择是使用PM2。它将处理节点应用程序的启动加载,处理/显示其日志,并在出现错误时重新启动它们。您也可以监控它们,停止,重启......