免费资源网 – https://freexyz.cn/
如下:
-m,–memory 内存限制,格式是数字加单位,单位可以为 b,k,m,g。最小为 4M –memory-swap 内存+交换分区大小总限制。格式同上。必须必-m设置的大 –memory-reservation 内存的软性限制。格式同上 –oom-kill-disable 是否阻止 OOM killer 杀死容器,默认没设置 –oom-score-adj 容器被 OOM killer 杀死的优先级,范围是[-1000, 1000],默认为 0 –memory-swappiness 用于设置容器的虚拟内存控制行为。值为 0~100 之间的整数 –kernel-memory 核心内存限制。格式同上,最小为 4M查看事例:
[root@sannian ~]# docker run -d -m 1G –memory-swap 3G -p 9999:80 –restart=always –name gitlab twang2218/gitlab-ce-zh a3254078a79a084f3f3bed5f4ade3e26c7d86951cd822d95b113227d75b00097 [root@sannian ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES a3254078a79a twang2218/gitlab-ce-zh “/assets/wrapper” 21 minutes ago Up 2 minutes (healthy) 22/tcp, 443/tcp, 0.0.0.0:9999->80/tcp gitlab [root@sannian ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE twang2218/gitlab-ce-zh latest 18da462b5ff5 3 months ago 1.61GB registry-vpc.cn-hangzhou.aliyuncs.com/wenty/jumpserver latest 055f42f305f5 7 months ago 1.41GB registry.cn-hangzhou.aliyuncs.com/wenty/jumpserver latest 055f42f305f5 7 months ago 1.41GB registry.jumpserver.org/public/jumpserver 1.0.0 055f42f305f5 7 months ago 1.41GB registry.jumpserver.org/public/jumpserver latest 055f42f305f5 7 months ago 1.41GB补充:docker run -m指定内存大小不生效
执行docker run的时候,想要指定一下内存大小,用了-m参数
报错如下
#docker run -id -m 3g -p 7001:7001 197.3.16.51/sysmgr/mywebapptest_app_weblogic:20180820047 WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. 52380a4896f3f916cd0f95f97e233b30d9406840e10c0c53484b3be9000d0321
然后发现虽然我设置堆大小为5G,容器还是创建出来了,3g的限制并没有生效。
查阅资料发现这个报错是因为宿主机内核的相关功能没有打开。
解决方案
按照下面的设置就行
step 1:
编辑/etc/default/grub文件,将GRUB_CMDLINE_LINUX一行改为
GRUB_CMDLINE_LINUX=”cgroup_enable=memory swapaccount=1″step 2:
更新 GRUB,即执行$ sudo update-grub
step 3:
重启系统。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
免费资源网 – https://freexyz.cn/
© 版权声明
THE END
暂无评论内容