Linux

CGroups 記憶體限制不起作用

  • March 10, 2016

我正在嘗試使用 CGroups 限制 LXC 容器的記憶體使用量,但我無法限制記憶體。

# lxc-cgroup -n maxdaniel981 memory.limit_in_bytes 134217728
lxc_container: failed to assign '134217728' value to 'memory.limit_in_bytes' for 'maxdaniel981'

然後我抬頭/proc/cgroups

# cat /proc/cgroups
#subsys_name    hierarchy       num_cgroups     enabled
cpuset  2       3       1
cpu     3       3       1
cpuacct 3       3       1
memory  0       1       0
devices 4       3       1
freezer 5       3       1
net_cls 6       3       1
blkio   7       3       1
perf_event      8       3       1
net_prio        6       3       1

看起來cgroups_memory已禁用,但我啟用了核心標誌/etc/default/grub並使用更新了 grubupdate-grub

# cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="cggroup_enable=memory swapaccount=1"
GRUB_CMDLINE_LINUX="cggroup_enable=memory swapaccount=1"

CGroup 是/etc/fstab這樣掛載的;

cgroup        /sys/fs/cgroup  cgroup  defaults        0       0

有人可以幫我解決這個問題嗎?我正在使用 Debian Jessie,我的核心版本是 3.16.0-4-amd64。

您的GRUB 配置中有一個小錯字;cgroupcggroup應該做的伎倆:

GRUB_CMDLINE_LINUX_DEFAULT="cgroup_enable=記憶體交換帳戶=1"

引用自:https://serverfault.com/questions/762206