设置启动依赖项非常简单,但我无法弄清楚如何确保在挂载服务停止之前服务已停止.
mountCustomPartitions.service
[Unit]Description=My Custom Partition Mounting Service[Service]Type=oneshotRemainAfterExit=yesExecStart=/usr/bin/mountCustomPartitions.sh mountExecStop=/usr/bin/mountCustomPartitions.sh unmount[Install]WantedBy=multi-user.target
ProgramA.service
[Unit]Description=My Generic Program A ServiceWants=mountCustomPartitions.serviceAfter=mountCustomPartitions.service[Service]Type=simpleExecStart=/usr/bin/ProgramA[Install]WantedBy=multi-user.target
ProgramB.service
[Unit]Description=My Generic Program B ServiceRequires=ProgramA.serviceWants=mountCustomPartitions.serviceAfter=mountCustomPartitions.service ProgramA.service[Service]Type=simpleExecStart=/usr/bin/ProgramB[Install]WantedBy=multi-user.target
在上面的场景中,mountCustomPartitions.service必须在程序服务之前启动,但也必须在它们之后停止.如果mountCustomPartitions.service被显式停止,那么它应该导致其他人也停止(但必须等待它们停止).我还需要确保ProgramB在ProgramA之后启动,但也在ProgramA之前停止.希望这不是太混乱.
我能想到的唯一解决方案是让每个服务都有一个ExecStop行,为特定服务执行systemctl stop [service]命令,该服务必须在停止之前停止.我遇到的问题是我实际上目前有六个服务使用已安装的分区,必须在尝试卸载之前停止.在这六个中,有些需要按特定顺序停止.由于这是在商业产品中使用,我希望有一个更清洁的解决方案.
解决方法 您可以通过在单元文件中指定Before =和After =来控制关闭顺序,以描述启动顺序.关闭时应用反向顺序.以下是official docs对此的评价:
总结…when two units with an ordering dependency between them are shut down,the inverse of the start-up order is applIEd. i.e. if a unit is configured with After= on another unit,the former is stopped before the latter if both are shut down…
以上是内存溢出为你收集整理的linux – 如何按特定顺序停止systemd服务全部内容,希望文章能够帮你解决linux – 如何按特定顺序停止systemd服务所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)