码迷,mamicode.com
首页 > 其他好文 > 详细

编写systemd下服务脚本

时间:2018-09-08 15:22:54      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:rem   wan   multi   art   des   start   mil   ted   type   

编写systemd下服务脚本

一、在/lib/systemd/system目录下建立服务脚本

sshd.service 必须以service结尾

二、填写内容

[Unit]

Description=SSH Key Generation

 

[Service]

Type=oneshot

RemainAfterExit=yes

 

ExecStart=/etc/init.d/sshd  start

 

[Install]

WantedBy=multi-user.target

 

三、根据脚本后面的WantedBy=multi-user.target

在对于路径建立链接

Cd   /etc/systemd/system/multi-user.target.wants

Ln -s  /etc/systemd/system/multi-user.target.wants/sshd.service   sshd.service

 

编写systemd下服务脚本

标签:rem   wan   multi   art   des   start   mil   ted   type   

原文地址:https://www.cnblogs.com/liushuhe1990/p/9609019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!