私はDebian 11を使用しており、ユーザーはkvmを使用してVMからコンソール、ssh、lightdmを介してログインできます。しかし、システムにエラーが発生しました。
sudo systemctl status [email protected]
● [email protected] - User Manager for UID 1000
Loaded: loaded (/lib/systemd/system/[email protected]; static)
Drop-In: /lib/systemd/system/[email protected]
└─sysfs.conf
Active: failed (Result: exit-code) since Mon 2021-09-06 20:20:08 UTC; 50min ago
Docs: man:[email protected](5)
Main PID: 897 (code=exited, status=1/FAILURE)
CPU: 12ms
set 06 20:20:08 host systemd[1]: Starting User Manager for UID 1000...
set 06 20:20:08 host systemd[897]: pam_unix(systemd-user:session): session opened for user user(uid=1000) by (uid=0)
set 06 20:20:08 host systemd[897]: Failed to determine supported controllers: No such process
set 06 20:20:08 host systemd[897]: Failed to allocate manager object: No such process
set 06 20:20:08 host systemd[1]: [email protected]: Main process exited, code=exited, status=1/FAILURE
set 06 20:20:08 host systemd[1]: [email protected]: Failed with result 'exit-code'.
set 06 20:20:08 host systemd[1]: Failed to start User Manager for UID 1000.
サービスがこの行を実行しようとしているのを見ました。
grep -i exec /lib/systemd/system/[email protected]
ExecStart=/lib/systemd/systemd --user
サービスをデバッグしようとしています。
/lib/systemd/systemd --user --log-level=debug
systemd 247.3-6 running in user mode for user 1000/user. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
Failed to create '/run/user/1000/systemd/inaccessible', ignoring: File exists
Failed to create '/run/user/1000/systemd/inaccessible/reg', ignoring: File exists
Failed to create '/run/user/1000/systemd/inaccessible/dir', ignoring: File exists
Failed to create '/run/user/1000/systemd/inaccessible/fifo', ignoring: File exists
Failed to create '/run/user/1000/systemd/inaccessible/sock', ignoring: File exists
Failed to create '/run/user/1000/systemd/inaccessible/chr', ignoring: File exists
Failed to create '/run/user/1000/systemd/inaccessible/blk', ignoring: Operation not permitted
Found cgroup2 on /sys/fs/cgroup/, full unified hierarchy
Failed to determine root cgroup, ignoring cgroup memory limit: No such process
RLIMIT_MEMLOCK is already as high or higher than we need it, not bumping.
Found cgroup2 on /sys/fs/cgroup/, full unified hierarchy
Unified cgroup hierarchy is located at /sys/fs/cgroup/user.slice/user-1000.slice/session-1.scope.
Failed to create /user.slice/user-1000.slice/session-1.scope/init.scope control group: Permission denied
Failed to allocate manager object: Permission denied
解決策はありますか?
ベストアンサー1
解決策/解決方法を見つけました。 systemdのバグかもしれません。 grub "systemd.unified_cgroup_hierarchy=0" でこのコマンドラインを使用すると、すべてがうまく機能します。
vim /etc/default/grub
GRUB_CMDLINE_LINUX="apparmor=1 security=apparmor systemd.unified_cgroup_hierarchy=0"
update-grub2
shutdown -r now
私はいくつかの点検をしましたが、すべてが期待どおりに機能しています。
systemctl is-active [email protected]
active
sudo systemctl list-units --state failed
UNIT LOAD ACTIVE SUB DESCRIPTION
0 loaded units listed.