VincentChanX / shadowsocks-over-websocket

免费使用 Heroku 部署 shadowsocks
GNU General Public License v3.0
562 stars 1.53k forks source link

怎么后台运行或者开机自启动,每次都要输入一边好麻烦 #11

Open yzj-again opened 7 years ago

ljhcage commented 6 years ago

把命令写成脚本,然后脚本设置成自启动就行

chinanf-boy commented 6 years ago

使用 pm2

npm i -g pm2

使用

pm2 start local.js -- .... # 运行
pm2 list # 查看
pm2 save  # 保存当前进程并输出保存文件路径
pm2 startup # 开机自启动 

使用windows 记住 pm2 是不支持开机启动的

官方建议: 有一些外部库可以生成Windows兼容的启动脚本,请检出pm2-windows-service或pm2-windows-startup。

使用-pm2-windows-startup-简单,易用,不知道怎么卸载

或者 pm2-windows-service 可卸载和配置- github 库 >>

WeihuaGu commented 6 years ago

linux 简单写个systemd的unit,然后enable下就完了. linux好办,windows怎么整?

whtiehack commented 6 years ago

@WeihuaGu 你楼上的已经告诉你了呀。。