The cgroups filesystem has been unmounted.
To mount cgroups back without rebooting the system:
There are two main cgroup versions: cgroup v1 and cgroup v2. The process to mount them back differs slightly. Check your system's configuration to determine the version in use.
One way to identify the version is by checking the /proc/filesystems file for entries related to specific cgroup controllers (e.g., cpuset). If entries exist and don't have "nodev" at the end, it suggests cgroup v1.
Mount cgroup v1:
mkdir /sys/fs/cgroup # Create the mount point if it doesn't exist
mount -t cgroup none /sys/fs/cgroup # Mount the cgroup filesystem
Mount cgroup v2:
mkdir /sys/fs/cgroup # Create the mount point if it doesn't exist
mount -t cgroup2 none /sys/fs/cgroup # Mount the cgroup2 filesystem
Important Notes:
For more specific steps or if issues are encountered, it is recommended to consult the system's OS documentation.