简介: 本文主要为大家介绍如何通过systemd来实现ubuntu 18.04系统开机自动运行脚本。


ubuntu 18.04 如何设置开机自动启动脚本_管理系统

镜像下载、域名解析、时间同步请点击 阿里巴巴开源镜像站

一、概述

Ubuntu 18.04版本默认没有/etc/rc.local文件,已经无法通过在该文件中添加脚本来保证开机自动执行。那如何保证自己写的脚本可以开机自动运行呢?从Ubuntu 16.10版本开始不再使用initd管理系统,改用systemd管理系统,而通过systemd管理系统可以实现开机运行自己的脚本 ,本文讲解如何通过systemd来实现开机自动运行脚本。


二、配置方法


注意:


  • 如果您对实例或数据有修改、变更等风险操作,务必注意实例的容灾、容错能力,确保数据安全。
  • 如果您对实例(包括但不限于ECS、RDS)等进行配置与数据修改,建议提前创建快照或开启RDS日志备份等功能。
  • 如果您在阿里云平台授权或者提交过登录账号等安全信息,建议您及时修改。


systemd管理系统默认读取​​/etc/systemd/system​​的配置文件,该目录下的文件会链接​​/lib/systemd/system/​​的文件。执行​​ls /lib/systemd/system​​命令可以看到有很多启动脚本,其中就需要打开​​rc.local.service​​文件并查看内容。


#  This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
Description=/etc/rc.local Compatibility
ConditionFileIsExecutable=/etc/rc.local
After=network.target
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes

正常的启动文件主要分成以下三部分:


  • [Unit]段: 启动顺序与依赖关系。
  • [Service]段: 启动行为,如何启动,启动类型。
  • [Install]段: 定义如何安装这个配置文件,即怎样做到开机启动。

可以看出​​/etc/rc.local​​文件的启动顺序是在网络后面,但是显然它少了[Install]段,也就没有定义如何做到开机启动,所以这样配置是无效的。因此我们就需要在后面帮他加上[Install]段:


[Install]  
WantedBy=multi-user.target


Alias=rc-local.service

因为Ubuntu18.04默认没有​​/etc/rc.local​​这个文件,因此需要创建。然后您需要将开机启动脚本写入​​/etc/rc.local​​文件,最后测试开机启动后在​​root Home​​目录下生成以下文本文件。


#!/bin/bash
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo Test file > ~root/text.log
exit 0


注意 :脚本或者开机执行的命令要在exit0之前。


1、在​​/etc/systemd/system​​目录下创建​​rc.local.service​​服务的软链接。


ln -s /lib/systemd/system/rc.local.service /etc/systemd/system/

2、或者执行以下命令,设置开机自启动该服务。


systemctl enable rc-local.service

本文转自:​​ubuntu 18.04 如何设置开机自动启动脚本-阿里云开发者社区​


ubuntu 18.04 如何设置开机自动启动脚本_配置文件_02

ubuntu 18.04 如何设置开机自动启动脚本_开机启动_03

ubuntu 18.04 如何设置开机自动启动脚本_开机启动_04

ubuntu 18.04 如何设置开机自动启动脚本_启动顺序_05

ubuntu 18.04 如何设置开机自动启动脚本_配置文件_06

ubuntu 18.04 如何设置开机自动启动脚本_管理系统_07

ubuntu 18.04 如何设置开机自动启动脚本_ubuntu_08