[root@WEB1-2 ~]# [root@WEB1-2 ~]# cat /proc/sys/net/ipv4/tcp_fin_timeout 10 [root@WEB1-2 ~]# cat /proc/sys/net/ipv4/tcp_max_syn_backlog 1024 [root@WEB1-2 ~]# cat /proc/sys/net/ipv4/tcp_keepalive_time 7200 [root@WEB1-2 ~]# cat /proc/sys/net/ipv4/tcp_tw_recycle 1 echo "10" > /proc/sys/net/ipv4/tcp_fin_timeout 또는 sysctl -w net.ipv4.tcp_fin_timeout=10 ※ 리부팅후 계속 적용을 하기 위해서는 아래와 같이 수행 echo "net.ipv4.t..
[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..