Answers:
在CentOS / RHEL的较新内核(2.6.32+)上,您可以在运行时使用/ proc / <pid> / limits进行更改:
cd /proc/7671/
[root@host 7671]# cat limits | grep nice
Max nice priority 0 0
[root@host 7671]# echo -n "Max nice priority=5:6" > limits
[root@host 7671]# cat limits | grep nice
Max nice priority 5 6
在较新版本的util-linux-ng中,您可以使用prlimit命令,有关更多信息,请阅读此链接/superuser/404239/setting-ulimit-on-a-running-process