开机自启动Linux and windows

1、背景

        服务器由于更新等原因重启,部署到该服务上的响应的应用需要自启动

2、Linux

  2.1 方式一

  • 编写启动应用的sh脚本
  • 授权该脚本权限
chmod 777 xxx.sh
  • 修改rc.loacl

位置:/etc/rc.local

脚本:sh /home/xxxx.sh &

  • 授权rc.local                        
chmod 777 rc.local

        2.2 xxxx

3、windows

        3.1 方式一

        在C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup 路径下加入需要启动的xxxx.bat脚本或者其快捷方式

开机自启动Linux and windows_第1张图片

你可能感兴趣的:(开发工具相关,linux,运维,服务器)