Я нахожусь на сервере CentOS 7.4 и пытаюсь настроить CGroups.
Мой cgconfig выглядит так:
#
# Copyright IBM Corporation. 2007
#
# Authors: Balbir Singh <balbir@linux.vnet.ibm.com>
# This program is free software; you can redistribute it and/or modify it
# under the terms of version 2.1 of the GNU Lesser General Public License
# as published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
#
# By default, we expect systemd mounts everything on boot,
# so there is not much to do.
# See man cgconfig.conf for further details, how to create groups
# on system boot using this file.
#
mount {
cpuset = /cgroup/cpuset;
}
group businesspro {
cpu {
cpu.shares="500";
}
}
group startup {
cpuset {
cpuset.mems="0";
cpuset.cpus="0";
}
}
И cgrules.conf:
# /etc/cgrules.conf
#The format of this file is described in cgrules.conf(5)
#manual page.
#
# Example:
#<user> <controllers> <destination>
#@student cpu,memory usergroup/student/
#peter cpu test1/
#% memory test2/
# End of file
#
@watchdra cpu businesspro/
*:iscsid net_prio cgdcb-4-3260
dramafor cpuset cpuset:/startup/
Теперь я пытаюсь переместить все процессы на dramafor
в cgroup startup
с cpuset
контроллер. Я создал это и перезапустил cgred
и cgconfig services
но startup/tasks
файл пуст. Я даже не знаю, как это начать отлаживать. Может ли кто-нибудь сказать мне, что происходит не так, или хотя бы сказать мне, как отладить эту ситуацию?
Хорошо, я нашел ответ. В моем cgred мне нужно было просто /startup
вместо того cpuset:/startup
Простая синтаксическая ошибка для всех, у кого такая же проблема