[root@TEST01 ~]# [root@TEST01 ~]# [root@TEST01 ~]# vmstat 1 | while read imsi; do echo $(date) $imsi; done Thu Nov 7 14:56:15 KST 2013 procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------ Thu Nov 7 14:56:15 KST 2013 r b swpd free buff cache si so bi bo in cs us sy id wa st Thu Nov 7 14:56:15 KST 2013 1 0 96 76144 59940 208752 0 0 2 12 31 40 0 4 96 0 0 Thu Nov 7 14:56..
1. ifconfig 명령으로 변경가능한 txqueuelen 값은 리부팅시 초기화됨. 따라서 아래와 같이 rc.local 등에 추가하는 방법으로 적용가능 ifconfig | grep eth | awk '{print $1}' | xargs -i{} ifconfig {} txqueuelen 10000 grep "txqueuelen 10000" /etc/rc.d/rc.local || echo -e "ifconfig | grep eth | awk '{print \$1}' | xargs -i{} ifconfig {} txqueuelen 10000" >> /etc/rc.d/rc.local 2. 또는 아래와 같이 ip 명령을 통해 변경도 가능. [root@s-node01 perl]# [root@s-node01 per..
※ -i : Dump 대상 인터페이스 / -vv : 수집 level / -w : Log 생성 ※ 192.168.10.30 - 목적지 시스템 [root@TestWEB01 ~]# [root@TestWEB01 ~]# [root@TestWEB01 ~]# tcpdump -vv -i eth0 -w tcpdump.`date +%Y%m%d_%H%M%S`.log tcpdump: listening on eth0, link-type EN10MB (Ethernet), capture size 96 bytes 14 packets captured 14 packets received by filter 0 packets dropped by kernel [root@TestWEB01 ~]# [root@TestWEB01 ~]# [root@..
※ postgresql 프로세스 예시 #!/bin/bash #postgre_mem.sh MEMSUM=0 PROC_COUNT=`ps -ef | grep -v "grep" | grep "postgre" | wc -l` LIST_FILE=`ps -ef | grep -v "grep" | grep "postgre" | awk '{print $2}' | while read PID; do cat /proc/$PID/status | egrep 'VmRSS' | awk '{print $2'} ; done` for LIST in ${LIST_FILE}; do MEMSUM=`expr $MEMSUM + $LIST` done echo -e "PostgreSQL Process is ${PROC_COUNT} \t/ Memory i..
※ pam 인증등 wheel 그룹등의 권한 추가나 파일 자체의 권한을 수정하는 방법이 아닌 간단히 setfacl 명령으로 권한을 부여하는 방법 [root@TEST01 ~]# [root@TEST01 ~]# cat /etc/passwd | grep test test:x:500:501::/home/test:/bin/bash [root@TEST01 ~]# [root@TEST01 ~]# ls -l /etc/hosts -rw-r--r-- 2 root root 231 Sep 17 05:04 /etc/hosts [root@TEST01 ~]# [root@TEST01 ~]# setfacl -m u:test:rw /etc/hosts [root@TEST01 ~]# [root@TEST01 ~]# getfacl /etc/host..
※ Default Gateway가 eth0 이고 특정 IP에 대하여 eth1 을 통하여 routing 처리 1. 임시성 적용 및 테스트시 (재부팅시 설정 삭제됨) ※ Network 단위 설정시 route add -net 172.27.0.0/24 gw 172.27.0.1 dev eth1 ※ Host 단위 설정시 route add -host 172.27.0.30 gw 172.27.0.1 dev eth1 ※ Default Gateway 설정시 route add default gw 172.27.0.1 eth1 2. 시스템 부팅시 적용되도록 설정 [root@TEST01 ~]#vi /etc/sysconfig/network-scripts/route-eth1 172.27.0.0/24 via 172.27.0.1 #net..