※ Centos 공식 Repository 외 RPMforge 를 추가 wget i386 http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.i386.rpm or wget x86_64 http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm ※ Redhat 5의 경우는 - http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt or wget http://apt..
※ 패키지의 path는 절대 경로 또는 *를 포함한 경로 가능 [root@TEST01 ~]# [root@TEST01 ~]# yum provides */crtfastmath.o Loaded plugins: fastestmirror, priorities, security Loading mirror speeds from cached hostfile * base: data.nicehosting.co.kr * extras: data.nicehosting.co.kr * rpmforge: ftp.riken.jp * updates: data.nicehosting.co.kr gcc44-4.4.7-1.el5.x86_64 : GNU Compiler Collection version 4.4 Repo : base Matched..
[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@..