树莓派

树莓派为Nodejs程序设置脚本开机启动

  • 在/etc/init.d/下创建服务文件xxx
#!/bin/sh

### BEGIN INIT INFO
# Provides:          xxx
# Required-Start:    $local_fs $remote_fs $network $syslog
# Required-Stop:     $local_fs $remote_fs $network $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: start xxx
# Description:       start xxx
### END INIT INFO
export NODE_PATH=/home/pi/xxx/node_modules 
case $1 in
        start)
               pm2 /home/pi/xxx/server.js start
                ;;
        stop)
               pm2 /home/pi/xxx/server.js stop
				;;
        *)
                echo "Usage: $0 (start|stop)"
                ;;
esac
exit 0
  • 注意export NODE_PATH=指向node引用库环境。
sudo chmod +x /etc/init.d/xxx
  • 这样启动改脚本用service 命令就可以
sudo systemctl daemon-reload
sudo systemctl enable xxx
sudo service xxx start #启动
sudo service xxx stop #停止
  • 设置开机启动
sudo update-rc.d xxx defaults
Print Friendly, PDF & Email

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据