나의일 관련/클러스터관리툴

PBS Pro stack size 조정 기록

천연사이다 2017. 11. 13. 10:15

PBS Pro 에서 stack size 를 unlimited 로 변경할때.


- 대상 파일 : /opr/pbs/13.1.1.162303/lib/init.d/limits.pbs_mon

- 수정 방법 : 아래 예제와 같이 "ulimit -s unlimited" 를 조건문 밖에 작성.


#       This file will be sourced by the PBS startup script, pbs_init.d.

#       It is here only for binary compatibility with previous releases.

#       Feel free to replace its contents.

if [ -f /etc/sgi-release -o -f /etc/sgi-compute-node-release ] ; then

    MEMLOCKLIM=`ulimit -l`

    NOFILESLIM=`ulimit -n`

    STACKLIM=`ulimit -s`

    ulimit -l unlimited

    ulimit -n 16384

    ulimit -s unlimited

fi


    ulimit -s unlimited