Não é possível mover todos os processos de um usuário para o cgroup usando cgred

2

Estou em um servidor do CentOS 7.4 e tentando configurar o CGroups.

Meu cgconfig tem esta aparência:

#
#  Copyright IBM Corporation. 2007
#
#  Authors: Balbir Singh <[email protected]>
#  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";
    }
}

E 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/

Agora, o que estou tentando fazer é mover todos os processos em dramafor para o cgroup startup com o controlador cpuset . Eu criei isso e reiniciei cgred e cgconfig services , mas o arquivo startup/tasks está vazio. Eu não sei como começar a depurar isso. Alguém pode me dizer o que está errado, ou pelo menos me dizer como depurar esta situação?

    
por cocoa1231 02.01.2018 / 22:00

1 resposta

0

Ok, descobri a resposta. No meu cgred, eu tive que fazer apenas /startup em vez de cpuset:/startup

Erro de sintaxe simples para qualquer pessoa com esse mesmo problema

    
por 02.01.2018 / 22:27