Display System Environmental Sensors

2010.05.11 11:32

조인상 조회 수:18668

원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어

Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea

+++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

본문 : http://www.ischo.net -- 조인상 //시스템 엔지니어

+++++++++++++++++++++++++++++++++++++++++++++++++++++++


출처 : http://blog.naver.com/win2107?Redirect=Log&logNo=100000822943


Display System Environmental Sensors (CHRP)

This Service Aid displays the environmental sensors implemented on a CHRP system. The information displayed is the sensor name, physical location code, literal value of the sensor status, and the literal value of the sensor reading.

Note:

Runs on CHRP systems units only.



The sensor status can be any one of the following:

Normal
The sensor reading is within the normal operating range.

Critical High
The sensor reading indicates a serious problem with the device. Run diagnostics on sysplanar0 to determine what repair action is needed.

Critical Low
The sensor reading indicates a serious problem with the device. Run diagnostics on sysplanar0 to determine what repair action is needed.

Warning High
The sensor reading indicates a problem with the device. This could become a critical problem if action is not taken. Run diagnostics on sysplanar0 to determine what repair action is needed.

Warning Low
The sensor reading indicates a problem with the device. This could become a critical problem if action is not taken. Run diagnostics on sysplanar0 to determine what repair action is needed.

Hardware Error
The sensor could not be read because of a hardware error. Run diagnostics on sysplanar0 in problem determination mode to determine what repair action is needed.

Hardware Busy
The system has repeatedly returned a busy indication, and a reading is not available. Try the Service Aid again. If the problem continues, run diagnostics, on sysplanar0 in problem determination mode to determine what repair action is needed.



This Service Aid can also be run as a command. The command can be used to list the sensors and their values in a text format, list the sensors and their values in numerical format, or a specific sensor can be queried to return either the sensor status or sensor value.



The command can be run by entering one of the following:

/usr/lpp/diagnostics/bin/uesensor -l | -a

/usr/lpp/diagnostics/bin/uesensor -t token -i index [-v]

Flags

-l
List the sensors and their values in a text format.

-a
List the sensors and their values in a numerical format. For each sensor, the following numerical values are displayed as:


-t token
Specifies the sensor token to query.

-i index
Specifies the sensor index to query.

-v
Indicates to return the sensor measured value. The sensor status is returned by default.



Examples

Display a list of the environmental sensors:
/usr/lpp/diagnostics/bin/uesensor -l

Sensor Token = Fan Speed
Status = Normal
Value = 2436 RPM
Location Code = F1


Sensor Token = Power Supply
Status = Normal
Value = Present and operational Location Code = V1

Sensor Token = Power Supply
*Status = Critical low
Value = Present and not operational
Location Code = V2

Display a list of the environmental sensors in a numerical list:
/usr/lpp/diagnostics/bin/uesensor -a

3 0 11 87 P1
9001 0 11 2345 F1
9004 0 11 2 V1
9004 1 9 2 V2

Return the status of sensor 9004, index 1:
/usr/lpp/diagnostics/bin/uesensor -t 9004 -i 1
9

Return the value of sensor 9004, index 1:
/usr/lpp/diagnostics/bin/uesensor -t 9004 -i 1 -v
2



[실제 시스템 예제 - 6F1]
# /usr/lpp/diagnostics/bin/uesensor -l
  Sensor = thermal sensor
  Status = Normal
  Value = 21 Degrees Celsius
  Physical Location Code = L1



#/usr/lpp/diagnostics/bin/uesensor -a
3 0 11 21 L1





----------------------------------------

AIX temperature sensors

----------------------------------------

By executing the command /usr/lpp/diagnostics/bin/uesensor, you can, on supported platform, get the fan speeds and temperature of your system:


[root@sys /] /usr/lpp/diagnostics/bin/uesensor -a 3 0 11 31 P1 9001 0 11 2100 F1 9001 1 11 2760 F2 9001 2 11 1890 F3 9001 3 11 1890 F4 9002 0 11 5129 P1 9002 1 11 3129 P1 9002 2 11 5129 P1 9002 3 11 12077 P1 9004 0 11 3 P3-V1 9004 1 11 3 P3-V2 9004 2 11 3 P3-V3
diag 메뉴를 통해서 접근하는 방법----------------------------
diag-->Task Selection-->Display Sysem Environmental Sensors
(참고) p670과 p690은 지원안되네요..ㅠㅠ
한국 IBM UNIX 기술영업부, TSG 에서 작성하였습니다. -------------------------------------------------- 시스템의 온도는 Service Processor 를 통해 monitoring 됩니다. 모든 pSeries 서버가 이를 지원하는 것은 아닙니다. bootinfo -p 명령어를 수행했을 때 chrp 로 나오는 CHRP(Common H/W Reference Platform) 서버기종에서 주로 사용가능합니다. 서버의 Firmware 가 제공하는 값을 보여주는 것이기 때문에 CHRP 모든 기종에서 지원되지는 않습니다.
수치적으로 온도를 확인할 수 있는 서버인지를 점검하는 명령어는 다음과 같습니다. # /usr/lib/boot/bin/dmpdt_chrp | grep ibm,environmental | grep sensor
결과값이 없으면 온도를 확인할 수 없는 서버이고 결과값이 있으면 온도확인이 가능한 서버입니다. p690, p670 에서는 System Firmware Level 에서의 기능차이로 인해 온도확인이 불가능합니다.
그러나 수치적으로 온도를 확인할 수 없는 서버일지라도 시스템에 문제를 일으킬 수 있는 온도를 넘게 되면 Error Message 가 시스템상에 보고되어 errpt 를 통해 확인이 가능하므로 이로 인한 장애를 예방할 수 있게 됩니다.
번호 제목 글쓴이 날짜 조회 수
공지 [공지] 게시자료 열람자유. 불펌금지입니다. 조인상 2010.12.07 108386
111 SMIT Fast Paths 조인상 2010.05.11 19036
110 메뉴얼 링크 [1] 조인상 2010.05.11 19019
109 syslog 떨어 뜨리는 방법 조인상 2010.05.11 19004
» Display System Environmental Sensors 조인상 2010.05.11 18668
107 AIX 기본 설치 사항 조인상 2010.05.11 18611
106 Command is Respawning Too Rapidly. 3A30359F 조인상 2010.06.17 18516
105 .sh_history 파일에 time stamp 찍는 법 조인상 2011.03.04 18515
104 p시리즈 장비별 설치/동작환경(site-planning nutshell) file 조인상 2010.05.11 18493
103 [매뉴얼] IBM p시리즈 머신에 레드햇리눅스 설치하기 file 조인상 2010.05.12 18231
102 AIX OS에서 time zone을 변경 하는 방법 조인상 2010.05.11 18125
101 os runlevel 관련 명령어 조인상 2010.05.11 18109
100 BC & x시리즈 전력량 계산기 file 조인상 2010.05.11 17830
99 파일 시스템 용량 증가시 "물리적 구획이 부족합니다."(0516-1034) 라는 메세지가 오류메세지 조인상 2010.05.11 17830
98 expect 스크립트를 이용한 KLIS 서비스 내리기 file 조인상 2010.05.11 17809
97 AIX L1, L2, L3 cache 사이즈 확인하는 방법 조인상 2010.05.11 17703
96 LV name과 마운트 이름 변경하기 조인상 2010.05.11 17672
95 errpt 내용 삭제하는 법 조인상 2010.05.11 17634
94 DAT Tape 사양 로드맵 file 조인상 2011.08.08 17580
93 mksysb & savevg &alt_disk_install 조인상 2010.05.11 17480
92 IBM p670 Service Guide file 조인상 2010.05.11 17451
서버에 요청 중입니다. 잠시만 기다려 주십시오...