Ubuntu设置开机启动脚本

  1. 在/etc/init.d/目录下创建脚本文件web.sh,并设置web.sh文件的读写权限
> sudo chmod 777 web.sh
  1. 写入脚本
#!/bin/sh
### BEGIN INIT INFO
#
# Provides:		web.sh
# 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 web.sh 
# Description:		Start web.sh with 8089 port
#
### END INIT INFO
cd /home/root/web
java -jar test_springboot.war &

在上面的脚本中,test_springboot.war是一个spring boot程序,放在/home/root/web目录下,application.properties配置文件也在/home/root/web目录下。

  1. 将命令脚本添加到启动脚本中
> sudo update-rc.d web.sh defaults 90

90是启动顺序,也可以是其他值。

从启动脚本中移除

> sudo update-rc.d -f web.sh remove
  1. 重启
> sudo reboot now

你可能感兴趣的:(linux)