자신만의 최상위 cgroup을 만들 수 있나요?

자신만의 최상위 cgroup을 만들 수 있나요?

문서이것이 작동해야 함을 나타내는 것 같습니다

# mkdir /sys/fs/cgroup/mytest
# mount -t cgroup mytest  /sys/fs/cgroup/mytest
mount: /sys/fs/cgroup/mytest: mytest already mounted or mount point busy.

내가 무엇을 놓치고 있나요?

이것은 centos-8의 cgroups-v1입니다.

답변1

다음과 같은 것을 찾고 계십니까? (다른 Linux 버전을 사용하고 있기 때문에 경로가 예제와 다를 수 있습니다.)

Create the cgroup
# mkdir /sys/fs/cgroup/unified/mytest

Put the shell in the cgroup
# echo $$ > /sys/fs/cgroup/unified/mytest/cgroup.procs

Verify that the shell process is in the given cgroup
# cat /proc/$$/cgroup | grep mytest
0::/mytest

관련 정보