-
Notifications
You must be signed in to change notification settings - Fork 264
Description
My lxcfs is managed by systemd. However every time when system reboot, i encountered this error just about one minute after lxcfs started
Nov 22 17:08:46 izbp1a20q8kyn1fvlbkfz7z kernel: lxcfs3.0.1[671]: segfault at f1c ip 00007fe6dec7f4b0 sp 00007fe6de03b6a0 error 4 in ld-2.17.so[7fe6dec76000+21000]
Nov 22 17:08:46 izbp1a20q8kyn1fvlbkfz7z systemd: lxcfs.service: main process exited, code=killed, status=11/SEGV
Nov 22 17:08:46 izbp1a20q8kyn1fvlbkfz7z systemd: Unit lxcfs.service entered failed state.
Nov 22 17:08:46 izbp1a20q8kyn1fvlbkfz7z systemd: lxcfs.service failed.
Nov 22 17:08:47 izbp1a20q8kyn1fvlbkfz7z systemd: lxcfs.service holdoff time over, scheduling restart.
Nov 22 17:08:47 izbp1a20q8kyn1fvlbkfz7z systemd: Starting FUSE filesystem for LXC...
after scheduled restart, it's ok.
My lxcfs.service is as follows
[Unit]
Description=FUSE filesystem for LXC
ConditionVirtualization=!container
Documentation=man:lxcfs(1)
Before=kubelet.service
[Service]
ExecStart=/usr/local/bin/start-lxcfs.sh
KillMode=process
Restart=always
ExecStopPost=-/usr/bin/fusermount -u /var/lib/lxc/lxcfs
Delegate=yes
ExecStartPost=/usr/local/bin/remount-lxcfs.sh
[Install]
WantedBy=multi-user.target
Has anyone has the same problem?