2017. 11. 13. 10:15 나의일 관련/클러스터관리툴
PBS Pro stack size 조정 기록
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 | 
'나의일 관련 > 클러스터관리툴' 카테고리의 다른 글
| 오류 내용 : ld: cannot find -lfl (0) | 2018.01.08 | 
|---|---|
| linux 유용한 스크립트 기록 (0) | 2017.11.16 | 
| SLURM 공부 기록 (0) | 2017.11.08 | 
| PBS Pro 사용자의 작업 제출 허용 기록 (0) | 2017.11.02 | 
| redhat 계열 repo 파일 생성 (0) | 2017.10.27 |