I sent an error message before, but it hasn't been fixed yet. I've had to manually configure it before. The error I describe here:
https://forum.centos-webpanel.com/index.php?topic=9263.0Up to today I update to add a new client I discovered a new bug. It is after saving it creates a strange string behind the drive parameters.
policy goi_2GB
group caodat {
cpu {
cpu.cfs_quota_us = 500000;
cpu.cfs_period_us = 100000;
}
memory {
memory.limit_in_bytes = 2G;
memory.memsw.limit_in_bytes = 2G;
}
blkio {
blkio.throttle.read_bps_device = "8:336Jun53Sep151Jun215Nov151Sep234Jul151Jun151Jul151Jun792Nov4096Nov165Dec 20000000";
blkio.throttle.write_bps_device = "8:336Jun53Sep151Jun215Nov151Sep234Jul151Jun151Jul151Jun792Nov4096Nov165Dec 20000000";
}
}
If I delete the parameters behind. Then everything is working fine.
policy goi_2GB
group caodat {
cpu {
cpu.cfs_quota_us = 500000;
cpu.cfs_period_us = 100000;
}
memory {
memory.limit_in_bytes = 2G;
memory.memsw.limit_in_bytes = 2G;
}
blkio {
blkio.throttle.read_bps_device = "8:32 20000000";
blkio.throttle.write_bps_device = "8:32 20000000";
}
}
Hopefully development will fix this.