리눅스 timezone 변경 ㅇ timezone은 서버의 시간을 말함 ㅇ 현재 서버의 timezone 확인 방법 (date 명령어) - KST로 설정되어 있는 것을 확인 가능 [root@i-9-78-VM ~]# date Tue Mar 13 08:52:59 KST 2012 ㅇ 만약 KST(Asia/Seoul)가 아니라면 다음과 같이 바꾸면 됨 ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime R&D/OS 2012.03.13
CentOS Repository 변경(ftp.daum.net) /etc/yum.repos.d/CentOS-Base.repo 파일의 내용을 아래로 변경 # CentOS-Base.repo # # This file uses a new mirrorlist system developed by Lance Davis for CentOS. # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually pic.. R&D/OS 2012.03.12
JDK 자동 설치 without question 1.1 JDK 설치 자동화 o 설치시 Yes | Enter 자동 입력 - 설치시 자동으로 Yes 또는 Enter를 눌러 주는 방법 echo y | ./jdk-6u24-linux-x64.bin 사용 예 #wget http://10.5.16.170/deps/jdk-6u31-linux-x64-rpm.bin #chmod 777 jdk-6u31-linux-x64-rpm.bin #echo y | /data1/jdk-6u31-linux-x64-rpm.bin R&D/OS 2012.03.09
Oracle Linux Repository Oracle 리눅스는 RedHat 리눅스를 기반으로 Oracle에서 패키징한 리눅스임 - Oracle에서 공식적으로 제공하고 있는 Repository http://public-yum.oracle.com/public-yum-el5.repo R&D/OS 2012.02.29
Dom0 메모리 크기 결정 ¡ Dom0 Memory 크기 변경 Oracle VM 3.0 버전에서 Recommand하는 Dom0의 메모리 크기 공식을 따름 dom0_mem = 502 + int(physical_mem * 0.0205) Physical Memory Dom0 Memory 2 GB 543 MB 4 GB 585 MB 8 GB 669 MB 16 GB 837 MB 32 GB 1173 MB 64 GB 1845 MB 98 GB 2511 MB 128 GB 3188 MB 192 GB 3936 MB 256 GB 5875 MB 512 GB 11249 MB 1024 GB 21997 MB 2048 GB 43493 MB R&D/OS 2012.02.21
NIC bonding in RedHat o Bonding o Configuration - /etc/sysconfig/network-scripts/ifcfg-eth4 DEVICE=eth4 BOOTPROTO=none HWADDR=00:1b:21:a7:fc:e9 ONBOOT=yes MASTER=bond0 SLAVE=yes - /etc/sysconfig/network-scripts/ifcfg-eth5 DEVICE=eth5 BOOTPROTO=none HWADDR=00:1b:21:a7:fc:e8 ONBOOT=yes MASTER=bond0 SLAVE=yes * Physical NIC 설정에서 중요한 것은 HWADDR값을 꼭 적어넣어야 한다. * 비록 BOND 인터페이스가 실제 HWADDR을 사용하지는 않고, 새로운 MAC을 설정하지만 * REDHAT계열의.. R&D/OS 2012.02.19
Machine Check Exception MCE (Machine Check Exception)이란 하드웨어 오류를 탐지하는 방법이다. 윈도우 계열에서의 파란화면이나 리눅스의 커널 Panic과 같은 케이스 중에서 하드웨어의 장애로 발생한 오류를 탐지한다. 리눅스의 경우 아래와 같은 오류 메시지가 콘솔화면에 나오게 된다. CPU 0: Machine Check Exception: 0000000000000004 Bank 2: f200200000000863 Kernel panic: CPU context corrupt ㅇ 장애의 타입 1) System Bus error : process와 motherboard 간의 통신 오류 2) Memory error : parity / ECC 의 문제로 에러 3) Cache error : CPU 의 cache에 오류 .. R&D/OS 2012.02.18
[debian] dns 설정 1. dns 서버(bind9) 설치 apt-get install bind9 2. dns 설정 . DNS 설정 파일 : /etc/bind/ . 서버 설정 파일 : /etc/bind/named.conf R&D/OS 2011.11.15
OCFS2 마운트한 클러스터의 노드 검색 OCFS2 클러스터를 사용할 때 현재 클러스터 중 몇개의 노드가 디스크를 공유하고 있는지를 파악함 [root@node1 ~]# mounted.ocfs2 -f Device FS Nodes /dev/sdb1 ocfs2 node15, node1 R&D/OS 2011.08.04