/ 건강 블로그
본문 바로가기
반응형

전체 글176

pbs 큐 작업 한꺼번에 제거하는 법 # qstat Job id Name User Time Use S Queue ---------------- ---------------- ---------------- -------- - ----- 803216.pcm01 openmp_job ymm 00:00:00 R workq 803217.pcm01 openmp_job ymm 00:00:00 R workq 803218.pcm01 openmp_job ymm 00:00:00 R workq // 실수를 방지하기 위해 echo로 한번 찍어보고 qdel 수행 # for N in `qstat | egrep -v "Job id|-------" | awk '{print $1}'` > do > echo $N > done 803216.pcm01 803217.pcm01 80.. 2022. 3. 8.
GPFS megaraid 명령어로 장애 확인 GPFS megaraid 명령어로 장애 확인 // 디스크 장애 확인 [root@gpfs ~]# /opt/MegaRAID/MegaCli/MegaCli64 -PDList -aAll | grep -C10 'Firmware state' | egrep 'fault|bad' Firmware state: Unconfigured(bad) // OS 디스크 확인 [root@gpfs ~]# pwd /root [root@gpfs ~]# ./storcli /C0 show // OST 디스크 확인 [root@gpfs ~]# ./storcli /C1 show // OST 디스크 교체 후 copyback (Rebuild) 확인 [root@gpfs ~]# /opt/MegaRAID/MegaCli/MegaCli64 -PDList -aA.. 2022. 2. 14.
pbs 유용한 명령어 pbsnodes // pbs 노드 정보를 한눈에 볼 수있게 사용 # pbsnodes -aSj mem ncpus nmics ngpus vnode state njobs run susp f/t f/t f/t f/t jobs --------------- --------------- ------ ----- ------ ------------ ------- ------- ------- ------- comp free 0 0 0 991mb/991mb 1/1 0/0 0/0 -- // 전체 pbs 노드 정보를 확인 # pbsnodes -a comp Mom = comp ntype = PBS state = free pcpus = 1 resources_available.arch = linux resources_available.host = .. 2022. 2. 9.
GPFS 관리노드 와 계산노드간 용량이 맞지 않는 경우 GPFS 관리노드 와 계산노드간 용량이 맞지 않는 경우 # 관리서버 /data 용량 [root@mgmt ~]# df -h | grep "/data" data 3.0P 2.5P 528T 83% /data #계산노드 /data 용량 [root@node ~]# df -h | grep "/data" data 3.0P 2.7P 295T 91% /data # 해결방법 - 관리서버와 계산노드간 /data 동기화(sync)가 되지 않아서 동기화(sync)를 맞춰줘야 함. mmdf /data 명령어를 수행하여 동기화 시켜주면 됨. [root@mgmt ~]# mmdf /data [root@pcm00 ~]# pdsh -w node[01-36] "df -h /data | grep data" node15: data 3.0P 2.. 2022. 2. 9.
centos7 vnc firefox can't establish a connection to the server at localhost: 에러 해결 (vnc에서 firefox 접속시 메세지) - firefox can't establish a connection to the server at localhost:8787. - The site could be temporarily unavailable or too busy. Try again in a few moments. - If you are unable to load any pages, check your computer's network connection. - If your computer or network is protected by a firewall or proxy, make sure that firefox is permitted to access the W eb. 사용자가 여러개의 vnc.. 2022. 2. 9.
centos7 R RODBC 패키지 설치 에러 // R RODBC 패키지 설치시 에러 뜰 경우 # R > install.packages("RODBC") configure: error: "ODBC headers sql.h and sqlext.h not found" ERROR: configuration failed for package ‘RODBC’ * removing ‘/home/ymm/R/x86_64-redhat-linux-gnu-library/3.6/RODBC’ The downloaded source packages are in ‘/tmp/RtmpdFjkYE/downloaded_packages’ Warning message: In install.packages("RODBC") : installation of package ‘RODBC’ had no.. 2022. 2. 9.
centos7 nfs 서버 설치 및 설정하기 nfs 서버가 192.168.100.1 이라고 가정하에 작성함. ---------nfs 서버 설정----------------------- 1. nfs nfs-utils 패키지 설치 # yum -y install nfs-utils 2. nfs 데몬 재시작 # systemctl start nfs-server.service 3. nfs 서버 자동 실행 # systemctl enable nfs-server 4. exports 설정 후 저장 # vi /etc/exports /home *(rw,sync,no_subtree_check,no_root_squash) // 옵션 정리 ro 읽기만 허용 rw 읽기/쓰기 허용 no-root-squash 관리자 권한 부여 sync 파일을 쓸 때 서버와 클라이언트 싱크를 맞춘다.. 2022. 2. 9.
cetnos7 모듈 설치 시 getpagespeed-extras 에러 발생 해결 getpagespeed-extras에서 가져오는 모듈들은 getpagespeed-extras 비활성화 한 후 설치해야됨. // 예시) libnghttp2 모듈 설치 시 에러 # yum install libnghttp2 ======================================================================= Loaded plugins: fastestmirror, getpagespeed Loading mirror speeds from cached hostfile * base: mirror.kakao.com * epel: d2lzkl7pfhq30w.cloudfront.net * extras: mirror.kakao.com * updates: mirror.kakao.com.. 2022. 2. 9.
centos7 (아파치) http (98)Address already in use: AH00072: make_sock: could n...]:80 에러 확인 (http 데몬 프로세스 19049가 실행중이라 충돌나서 발생하는 현상임 // 이미 실행되고 있는 httpd 데몬 재시작 해볼려고 하였지만 아래와 같은 에러가 발생함. [root@client etc]# systemctl restart httpd Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details. // httpd 상태 로그 확인 [root@client etc]# systemctl status httpd ● httpd.service - The Apache HTTP Server Loaded: .. 2022. 2. 9.
반응형