본문 바로가기
UniX

OS 기본

by 타마마임팩트_쫀 2014. 3. 11.

OS 기본

 

1. OS 별 system 로그 위치

 

OS 

 로그 및 명령어

 비고

 HP-UX

 /var/adm/syslog/syslog.log

 /var/adm/syslog/OLDsyslog.log (Reboot 이전 로그)

 

 Solaris

 /var/adm/messages

 /var/adm/messages.# (OLD log)

 

 AIX

 $ errpt (기본)

 $ errpt -a (전체 Detail log)

 $ errpt -a j IDENTIFIER (특정 error identifier에 대한 로그 보기)

 error event log

 

 

2. Physical Memory 용량 확인

 

 OS

명령어 

비고 

HP-UX

# echo "phys_meme_pages/D" | adb /stand/vmunix /dev/kmem

 root 권한 필요

Solaris

$ prtconf | grep -i mem

 

AIX

$ lsdev -C | grep mem

$ lsattr -El mem0

 

 

 

3. Kernel/Network Parameter

 

OS 

 명령어

 변경

 HP-UX

 # sysdef

 # kmtune

 # sam (System Administration Manager)

 Solaris

 # sysdef -i

 /etc/system 파일 편집 (후 reboot)

 AIX

 # lsattr -E -l sys0

 # smitty (System Management Interface Tool)

 

 

4. OS Kernel parameter VS DB parameter

 

 분류

 OS Kernel parameter

 DB parameter

 비고

 Shared Memory

 Shmmax

 Shmmin

 Shmmni

 Shmseg

 Semmns

 Semmni

 Semmsl

 ...

 db_block_buffers

 large_pool_size

 shared_pool_size

 log_buffer

 sga_target

 sga_max_size

 

 ...

 

 File

 nfile

 maxfiles

 db_files

 

 

 Process

 nproc

 maxuprc

 processes

 

 

 ASync I/O

 max_async_ports

 disk_async_io 

 Raw device 사용시

 

shmmax : 1개의 shared memory segment의 최대 수치를 Byte 단위로 설정

shmmin : 1개의 shared memory segment의 최소 수치를 Byte 단위로 설정

shmmni : shared memory identifier의 갯수를 설정

shmseg : 1개의 프로세스에 attach 할 수 있는 shared memory segment의 최대 갯수를 설정

 

nfile : 시스템 전체에 동시 오픈될 수 있는 파일의 갯수 (Hard Limit)

maxfiles : 프로세스 1개에서 동시에 오픈할 수 있는 파일의 갯수 (Soft limit)

 

nproc : 시스템 전체의 총 프로세스 갯수 (Hard Limit)

maxuprc : USERID 별 총 프로세스 갯수

 

max_async_ports : 시스템 전체에서 Async I/O로 동작할 수 있는 파일의 개수, 초과 시 이후에 Access 되는 파일은 Sync I/O로 동작

 

 

'UniX' 카테고리의 다른 글

SED 명령어  (0) 2014.10.13
UNIX system process trace 방법  (0) 2014.04.14
HP-UX, IBM-AIX, SUN-Solaris 명령어 비교  (0) 2012.06.21
vi editor  (0) 2012.06.19
raw device to file system(dd copy) [펌]  (0) 2010.04.07