반응형
- KillMode=none: No processes in the control group will be killed. This setting is rarely used because it can lead to orphaned processes that remain running after the service is stopped.
- KillMode=control-group: All processes in the control group of the service will be terminated when the service is stopped. This is aggressive and can sometimes cause issues if there are processes that should not be killed immediately or if there are dependencies that need a more graceful shutdown.
- KillMode=process: Only the main process of the service will be killed. This is less aggressive but can also leave orphaned child processes.
- KillMode=mixed: The main process will receive a SIGTERM signal to allow it to terminate gracefully, while all remaining processes in the control group will be terminated with SIGKILL if they do not exit within a timeout. This mode provides a balanced approach, giving the main process a chance to clean up properly while ensuring that any lingering processes are forcibly terminated after the grace period.
vim /lib/systemd/system/ceph-volume@.service
[Unit]
Description=Ceph Volume activation: %i
After=local-fs.target
Wants=local-fs.target
[Service]
Type=oneshot
KillMode=none
Environment=CEPH_VOLUME_TIMEOUT=10000
ExecStart=/bin/sh -c 'timeout $CEPH_VOLUME_TIMEOUT /usr/sbin/ceph-volume-systemd %i'
TimeoutSec=0
[Install]
WantedBy=multi-user.target
KillMode=none -> KillMode=mixed
반응형
'가상화 > Proxmox' 카테고리의 다른 글
[proxmox] windows 11 가상머신 및 템플릿 생성 (0) | 2025.01.31 |
---|---|
[proxmox] vm에서 가상화(vitualization) 사용하기(중첩 가상화, Nested Virtualization) (0) | 2025.01.23 |
[proxmox] cluster node 제거 (0) | 2024.05.28 |
[Proxmox] program smartctl is using a deprecated SCSI ioctl, please convert it to SG_IO 경고 조치 (1) | 2023.11.22 |
[proxmox] HA Fencing (softdog을 이용한 node reboot) (0) | 2023.09.26 |