shell脚本设置服务开机自启
时间: 2023-07-06 11:43:41 浏览: 86
Linux中Oracle服务启动和停止脚本与开机自启动
要设置一个服务在开机时自启动,可以编写一个shell脚本并将其放置在init.d目录中。以下是一个示例脚本:
1. 创建一个新的文件并写入以下内容:
```
#!/bin/sh
### BEGIN INIT INFO
# Provides: myservice
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: My service
# Description: My service
### END INIT INFO
case "$1" in
start)
echo "Starting my service"
# Command to start the service goes here
;;
stop)
echo "Stopping my service"
# Command to stop the service goes here
;;
*)
echo "Usage: /etc/init.d/myservice {start|stop}"
exit 1
;;
esac
exit 0
```
2. 将文件保存为`/etc/init.d/myservice`,然后设置文件的可执行权限:
```
chmod +x /etc/init.d/myservice
```
3. 使用以下命令将服务添加到启动列表中:
```
update-rc.d myservice defaults
```
现在每次系统启动时,都会自动运行该服务。如果需要手动启动或停止服务,可以使用以下命令:
```
/etc/init.d/myservice start
/etc/init.d/myservice stop
```
阅读全文