Linux 시스템을 운영하다 보면 간혹 Ethernet Card의 Driver오류나 Hardware Fault가 발생할 때가 있다. 이럴때 아래와 같이 해당 Ethernet의 파트 교체나 드라이버 패치등을 위해 Hardware Level의 Device 정보나 PCI Bus 정보등을 파악할 필요가 있다. 1. /var/log/messages 시스템 로그에 Ethernet Device의 Link Down 및 Driver 오류 발생 [root@TEST01 /]# [root@TEST01 /]# cat /var/log/messages . . . 생략 . . . Apr 3 12:38:52 TEST01 kernel: nx_nic[eth2]: Device is DOWN. Fail count[8] Apr 3 12:38:..
Linux OS이하에서 iSCSI 로 할당 받은 SCSI Device 정보는 아래와 같이 확인이 가능하다. [root@DEDI-01 ~]# [root@DEDI-01 ~]# iscsiadm -m session tcp: [1] 10.217.97.231:3260,2 iqn.1986-03.com.sun:02:ea886003-c52b-cac6-ae11-dccde68a8d14 [root@DEDI-01 ~]# [root@DEDI-01 ~]# [root@DEDI-01 ~]# iscsiadm -m session -r 1 -P3 | grep -i "Attached SCSI devices" -B1 -A4 ************************ Attached SCSI devices: *******************..
Linux System에서는 아래와 같이 dmidecode 및 lspci 명령을 통해 PCI Slot 정보를 확인 가능하다. 1. 전체 PCI Slot 수와 Slot Type 확인 [root@TestDB01 ~]# dmidecode -t slot | grep Type | wc -l 16 [root@TestDB01 ~]# [root@TestDB01 ~]# dmidecode -t slot | grep Type Type: x4 PCI Express Gen 2 x8 Type: x4 PCI Express Gen 2 x8 Type: x8 PCI Express Gen 2 x16 Type: x4 PCI Express Gen 2 x8 Type: x8 PCI Express Gen 2 x16 Type: x4 PCI Expr..
DW 성향의 대용량 분석DB 시스템을 운용하다 보면, CPU나 Memory 등의 시스템 리소스 상태는 충분하나 DB 응답지연등의 현상이 있을 때가 있다. 시스템 담당자로서 각 리소스별 사용추이나 IDLE상태를 체크하면서 Storage 레벨 또는 특정 Disk Device 에 대한 I/O 상태를 확인해야 할 경우 아래와 같이 sar 명령을 통해 각 Device 별 실시간 유입 I/O 와 응답시간(await)을 확인 할 수 있다. [root@TestDB01 ~]# [root@TestDB01 ~]# sar -d 1 | grep "Average" | sort -nrk8 | head -3 Average: dev66-1696 1.00 512.00 0.00 512.00 0.05 52.00 52.00 5.20 Aver..
※ EMC등 Storage 장비에서 할당 받은 디스크를 RAW Device로 할당하는 방법 [ RHEL 5 계열 버전에서 RAW Device 정의 ] 1. RAW Configration 및 관련 service daemon 의 사용을 위해서 필요한 패키지 확인 [root@Test01 ~]# [root@Test01 ~]# [root@Test01 ~]# yum provides /etc/sysconfig/rawdevices Loaded plugins: security initscripts-8.45.38-2.0.1.el5.x86_64 : The inittab file and the /etc/init.d scripts. Repo : installed Matched from: Other : Provides-match..
※ 아래 LVM 에 할당된 /dev/mpath/mpath-19 에 대한 mapping 조회를 예시로 함. [root@TestDB01 ~]# [root@TestDB01 ~]# [root@TestDB01 ~]# service multipathd status multipathd (pid 8107)를 실행 중... [root@TestDB01 ~]# [root@TestDB01 ~]# [root@TestDB01 ~]# [root@TestDB01 ~]# [root@TestDB01 ~]# [root@TestDB01 ~]# pvscan PV /dev/mpath/mpath-19 VG PGXLOG lvm2 [40.00 GB / 96.00 MB free] PV /dev/mpath/mpath-20 VG ARCHIVE lvm2 ..