统信UOS1060设置自动关机02

原文链接:统信UOS1060设置自动关机02
hello,大家好啊,今天继续给大家介绍一篇如何在统信UOS 1060上实现自动关机的文章,本篇文章采用创建系统服务(Systemd)的方式。
你可以创建一个systemd服务来在特定时间执行关机命令。这需要创建一个服务文件和一个timer文件。Timer文件定义了何时运行服务。它可以定时或按照特定的时间表运行服务

1、创建服务文件
创建一个新的服务文件,例如 /etc/systemd/system/auto-shutdown.service,并添加以下内容
[Unit] :部分包含了服务的描述。
Description=Automatically shut down the system :是对服务的描述,说明这是一个用于自动关机的服务。
[Service] :部分定义了服务的详细信息。
Type=oneshot :表示这个服务会执行一次然后退出。
ExecStart=/usr/sbin/poweroff :定义了服务启动时要执行的命令,即关机命令。

uos@uos-PC:~/Desktop$ sudo -i
请输入密码:
验证成功
root@uos-PC:~# vi /etc/systemd/system/auto-shutdown.service
root@uos-PC:~# cat /etc/systemd/system/auto-shutdown.service
[Unit]
Description=Automatically shut down the system

[Service]
Type=oneshot
ExecStart=/usr/sbin/poweroff
root@uos-PC:~# 

统信UOS1060设置自动关机02_第1张图片

2、创建timer文件

创建一个与服务文件相关联的timer文件,例如 /etc/systemd/system/auto-shutdown.timer,并添加以下内容
[Unit] :部分包含了timer的描述。
Description=Run auto-shutdown.service at a specific time :是对timer的描述,说明这个timer是用来在特定时间运行auto-shutdown.service服务的。
[Timer] :部分定义了timer的详细信息。
OnCalendar=--* 14:35:00 :定义了timer触发的时间,即每天的23:00:00。
Unit=auto-shutdown.service :定义了当timer触发时要运行的服务,即auto-shutdown.service。
[Install] :部分定义了timer的安装信息。
WantedBy=timers.target :表示这个timer应该被timers.target所需要,确保timer在系统启动时被激活。

root@uos-PC:~# vi /etc/systemd/system/auto-shutdown.timer
root@uos-PC:~# cat /etc/systemd/system/auto-shutdown.timer
[Unit]
Description=Run auto-shutdown.service at a specific time

[Timer]
OnCalendar=*-*-* 14:35:00
Unit=auto-shutdown.service

[Install]
WantedBy=timers.target
root@uos-PC:~# 

统信UOS1060设置自动关机02_第2张图片
3、启动和启用timer

运行以下命令来启动并启用timer:

root@uos-PC:~# systemctl start auto-shutdown.timer
root@uos-PC:~# systemctl enable auto-shutdown.timer
Created symlink /etc/systemd/system/timers.target.wants/auto-shutdown.timer → /etc/systemd/system/auto-shutdown.timer.
root@uos-PC:~# 

统信UOS1060设置自动关机02_第3张图片

4、系统到时间自动关机
统信UOS1060设置自动关机02_第4张图片

你可能感兴趣的:(linux,UOS,统信,数据库,linux,服务器,uos)