- 
                Notifications
    You must be signed in to change notification settings 
- Fork 11
Resource Limits
        Stefan Grönke edited this page Aug 24, 2018 
        ·
        3 revisions
      
    To limit jails or jail process resources the host needs to have the kern.racct tunable enabled:
[ `/sbin/sysctl -qn kern.racct.enable` -lt 1 ] && \
	echo "kern.racct.enable=1" >> /boot/loader.conf && \
	rebootResource limits affecting the whole jail are compatible with other variants of iocage, but can also be set to constrain individual processes within the jail.
Resource limits can be configured according to the rctl man page.
As input format the iocage legacy syntax may be used. The preferred format for resource limit properties is:
[<action>=]<amount>[/<per>]
A jails memory consumption can be limited to not exceed 128M by setting the vmemoryuse configuration property:
ioc create -b -n limited-jail vmemoryuse=deny=128M/jailThe same resource limit can be set at any later time by using the ioc set command:
ioc set vmemoryuse=128M limited-jail