linux设置快捷启动发送systemctl start

设置systemctl start启动

创建系统文件

touch /usr/lib/systemd/system/prometheus.service

修改系统文件

vim /usr/lib/systemd/system/prometheus.service

写入内容

[Unit]
Description=Prometheus
Documentation=https://prometheus.io/
After=network.target

[Service]
Type=simple
User=root
ExecStart=启动命令
Restart=on-failure

[Install]
WantedBy=multi-user.target

重新加载

systemctl daemon-reload

你可能感兴趣的:(linux,运维,服务器)