检查是否安装了systemctl
可以使用以下命令进行检查
1 | # systemd --version |
如果没有安装可以网上搜索看系统是否支持安装
创建服务文件
服务文件的目录在
1 | cd /lib/systemd/system |
新建服务文件,简单模板如下:
123456789101112131415 | [Unit]# 简短描述Description=node_exporter# 文档描述Documentation=node_exporter Monitoring System# 如果该字段指定的 Unit 也要启动,那么必须在当前 Unit 之前启动After=network.target[Service]User=服务启动的用户名Group=用户所在组名ExecStart=可执行程序的路径[Install]WantedBy=multi-user.target |
保存文件为test.service
启动服务
1 | systemctl start test |
systemctl 文件块字段说明
Unit 块
12345678910 | Description:简短描述Documentation:文档地址Requires:当前 Unit 依赖的其他 Unit,如果它们没有运行,当前 Unit 会启动失败Wants:与当前 Unit 配合的其他 Unit,如果它们没有运行,当前 Unit 不会启动失败BindsTo:与Requires类似,它指定的 Unit 如果退出,会导致当前 Unit 停止运行Before:如果该字段指定的 Unit 也要启动,那么必须在当前 Unit 之后启动After:如果该字段指定的 Unit 也要启动,那么必须在当前 Unit 之前启动Conflicts:这里指定的 Unit 不能与当前 Unit 同时运行Condition...:当前 Unit 运行必须满足的条件,否则不会运行Assert...:当前 Unit 运行必须满足的条件,否则会报启动失败 |
Install 块
1234 | WantedBy:它的值是一个或多个 Target,当前 Unit 激活时(enable)符号链接会放入/etc/systemd/system目录下面以 Target 名 + .wants后缀构成的子目录中RequiredBy:它的值是一个或多个 Target,当前 Unit 激活时,符号链接会放入/etc/systemd/system目录下面以 Target 名 + .required后缀构成的子目录中Alias:当前 Unit 可用于启动的别名Also:当前 Unit 激活(enable)时,会被同时激活的其他 Unit |
Service 块
1234567891011121314151617 | Type:定义启动时的进程行为。它有以下几种值。Type=simple:默认值,执行ExecStart指定的命令,启动主进程Type=forking:以 fork 方式从父进程创建子进程,创建后父进程会立即退出Type=oneshot:一次性进程,Systemd 会等当前服务退出,再继续往下执行Type=dbus:当前服务通过D-Bus启动Type=notify:当前服务启动完毕,会通知Systemd,再继续往下执行Type=idle:若有其他任务执行完毕,当前服务才会运行ExecStart:启动当前服务的命令ExecStartPre:启动当前服务之前执行的命令ExecStartPost:启动当前服务之后执行的命令ExecReload:重启当前服务时执行的命令ExecStop:停止当前服务时执行的命令ExecStopPost:停止当其服务之后执行的命令RestartSec:自动重启当前服务间隔的秒数Restart:定义何种情况 Systemd 会自动重启当前服务,可能的值包括always(总是重启)、on-success、on-failure、on-abnormal、on-abort、on-watchdogTimeoutSec:定义 Systemd 停止当前服务之前等待的秒数Environment:指定环境变量 |
附官方说明:https://www.freedesktop.org/software/systemd/man/systemd.unit.html
systemctl 常用命令
123456789 | systemctl start node_exporter 开启服务systemctl stop node_exporter 关闭服务systemctl restart node_exporter 重启服务systemctl status node_exporter 查看服务状态systemctl enable node_exporter 将服务设置为开机自启动systemctl disable node_exporter 禁止服务开机自启动systemctl is-enabled node_exporter 查看服务是否开机启动systemctl list-unit-files|grep enabled 查看开机启动的服务列表systemctl --failed 查看启动失败的服务列表 |