在Ubuntu 16.04中安装cgconfig


13

我想使用创建一些控制组cgroup

到目前为止,我已经执行了以下操作:

  1. 我安装了一些软件包:

    sudo apt-get install cgroup-bin cgroup-lite cgroup-tools cgroupfs-mount libcgroup1
    
  2. 然后,我创建了/etc/cgconfig.conf具有以下内容的文件:

    mount {
      cpuset  = /cgroup/cpuset;
      cpu     = /cgroup/cpu;
      cpuacct = /cgroup/cpuacct;
      memory  = /cgroup/memory;
      devices = /cgroup/devices;
      freezer = /cgroup/freezer;
      net_cls = /cgroup/net_cls;
      ns      = /cgroup/ns;
      blkio   = /cgroup/blkio;
    }
    
    group limitcpu{
      cpu {
        cpu.shares = 400;
      }
    }
    
    group limitmem{
      memory {
        memory.limit_in_bytes = 512m;
      }
    }
    
    group limitio{
      blkio {
        blkio.throttle.read_bps_device = "252:0         2097152";
      }
    }
    
    group browsers{
      cpu {
        cpu.shares = 200;
      }
      memory {
        memory.limit_in_bytes = 128m;
      }
    }
    

    根据此处的指南,假设配置文件在Ubuntu上与在CentOS上相同,并且位于相同的位置并使用相同的语法。

  3. 然后根据该指南,我需要启动cgconfig service。我尝试过:

    sudo service cgconfig restart
    

    但是,哦,不!文件丢失!:

    Failed to restart cgconfig.service: Unit cgconfig.service not found.
    
  4. 经过一番好奇和寻找之后,我尝试了:

    ● cgconfig.service
       Loaded: not-found (Reason: No such file or directory)
       Active: inactive (dead)
    

因此,似乎我的系统上根本没有任何cgconfig服务!

我使用以下方法进行搜索:

sudo aptitude search cgconfig

但是,cgconfig找不到。

如何cgconfig在Ubuntu 16.04上安装?

Answers:


15

好的,我设法做到了与您相同的方式,但是做了一些更改:

1)我安装了相同的实用程序:

sudo apt-get install cgroup-bin cgroup-lite cgroup-tools cgroupfs-mount libcgroup1

2)我这样编辑conf文件:

/etc/init/cgroup-lite.conf

description "mount available cgroup filesystems"
author "Serge Hallyn <serge.hallyn@canonical.com>"

start on mounted MOUNTPOINT=/sys/fs/cgroup

pre-start script
test -x /bin/cgroups-mount || { stop; exit 0; }
test -d /sys/fs/cgroup || { stop; exit 0; }
/bin/cgroups-mount
cgconfigparser -l /etc/cgconfig.conf
end script

post-stop script
if [ -x /bin/cgroups-umount ]
then
    /bin/cgroups-umount
fi
end script

/etc/cgconfig.conf

# Since systemd is working well, this section may not be necessary.
# Uncomment if you need it
#
# mount {
# cpuacct = /cgroup/cpuacct;
# memory = /cgroup/memory;
# devices = /cgroup/devices;
# freezer = /cgroup/freezer;
# net_cls = /cgroup/net_cls;
# blkio = /cgroup/blkio;
# cpuset = /cgroup/cpuset;
# cpu = /cgroup/cpu;
# }

group limitcpu{
  cpu {
    cpu.shares = 400;
  }
}

group limitmem{
  memory {
    memory.limit_in_bytes = 512m;
  }
}

group limitio{
  blkio {
    blkio.throttle.read_bps_device = "252:0         2097152";
  }
}

group browsers {
    cpu {
#       Set the relative share of CPU resources equal to 25%
    cpu.shares = "256";
}
memory {
#       Allocate at most 512M of memory to tasks
        memory.limit_in_bytes = "512m";
#       Apply a soft limit of 512 MB to tasks
        memory.soft_limit_in_bytes = "384m";
    }
}

group media-players {
    cpu {
#       Set the relative share of CPU resources equal to 25%
        cpu.shares = "256";
    }
    memory {
#       Allocate at most 256M of memory to tasks
        memory.limit_in_bytes = "256m";
#       Apply a soft limit of 196 MB to tasks
        memory.soft_limit_in_bytes = "128m";
    }
}

cgconfigparser -l /etc/cgconfig.conf

/etc/cgrules.conf

user:process                                         subsystems   group
[user]:/usr/lib/chromium-browser/chromium-browser   cpu,memory      browsers
[user]:/usr/bin/clementine                        cpu,memory     media-players

例如,使用您的用户名而不是[user]。您可以添加需要限制的应用程序,并定义您是否希望它们受CPU,内存或两者限制。

我在中编辑了这一GRUB_CMDLINE_LINUX_DEFAULT/etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="cgroup_enable=memory swapaccount=1"

更新它:

sudo update-grub

3)最后重新启动以应用更改。

这就是我的工作方式。在此之前,我经常使用多任务处理OOM,例如使用大量资源的铬浏览器,克莱门汀,崇高文本和其他应用程序,现在它们运行平稳,我可以更好地完成多任务。

我真的希望这可以帮助其他人。

当前使用具有Intel Dual Core 2.6 Ghz4 Gb的Ubuntu 16.04 LTS 内存。


1
这听起来像是正确的方法,但是我发现使用cgexec更好,而不是使用cgrules.conf。另外,我认为您是要命名文件cgconfig.conf而不是cgconf.conf。如果systemd正在执行其工作,则我认为您不需要mount此文件中的部分。
标记

我按照Mark的建议编辑了此回复,对其进行了测试并且效果很好。
Rdrk '17

@Mark,我对您的解决方案感兴趣cgexec
乔纳森

9

我遇到了同样的问题。看起来当前的Ubuntu发行版中没有内置服务来加载cgroup配置文件。

您将在/ usr / share / doc / cgroup-tools / examples / cgconfig/ usr / share / doc / cgroup-tools / examples / cgred中找到一些(损坏的)示例初始化脚本 。

要手动加载配置文件,您可以使用

# Loads /etc/cgconfig.conf 
cgconfigparser -l /etc/cgconfig.conf

# Loads /etc/cgrules.conf
cgrulesengd -vvv --logfile=/var/log/cgrulesengd.log

作为一个穷人的解决方案,我为自己编写了一个初始化脚本,该脚本在系统启动时加载两个文件。

#!/bin/sh
### BEGIN INIT INFO
# Provides:          cgconf
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Should-Start:
# Should-Stop:
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Configures CGroups
### END INIT INFO

start_service() {
  if is_running; then
    echo "cgrulesengd is running already!"
    return 1
  else
    echo "Processing /etc/cgconfig.conf..."
    cgconfigparser -l /etc/cgconfig.conf
    echo "Processing /etc/cgrules.conf..."
    cgrulesengd -vvv --logfile=/var/log/cgrulesengd.log
    return 0
  fi
}

stop_service() {
  if is_running; then
    echo "Stopping cgrulesengd..."
    pkill cgrulesengd
  else
    echo "cgrulesengd is not running!"
    return 1
  fi
}

status() {
  if pgrep cgrulesengd > /dev/null; then
    echo "cgrulesengd is running"
    return 0
  else
    echo "cgrulesengd is not running!"
    return 3
  fi
}

is_running() {
  status >/dev/null 2>&1
}

case "${1:-}" in
  start)
    start_service
    ;;
  stop)
    stop_service
    ;;
  status)
    status
    ;;
  *)
    echo "Usage: /etc/init.d/cgconf {start|stop|restart|status}"
    exit 2
    ;;
esac

exit $?

将此文件保存在/etc/init.d/cgconf并使用安装

# make the script executable
chmod 755 /etc/init.d/cgconf

# register the service
update-rc.d cgconf defaults

# start the service
service cgconf start

# check the status
service cgconf status
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.