CentOS开机启动nodejs程序
2018-10-11 本文已影响22人
2b75747cf703
ssh root@x.x.x.x
yum -y install nodejs
wget x.x.x.x/x.js
chmod +x /etc/rc.d/rc.local
vi /etc/rc.d/rc.local
-------------------------------------
Insert
node /root/x.js
:wq Enter
-------------------------------------
shutdown -r now