# 등록 방법 echo "192.168.125.0/24 via 198.168.126.1 dev em2" > /etc/sysconfig/network-script/route-em2(설명) 192.168.125.0/24로 나가는 트래픽을 198.168.126.1 게이트웨이로 통하도록 설정 할 때 # 확인 방법> ip route show (참고사항)설정 후 아래와같은 에러가 발생하며 인터페이스가 정상적으로 올라오지 않는 경우가 있다.*오류* RTNETLINK answer : File exists이러한 경우 설정값이 정상인지 확인 후 정상이라면, > ip addr flush dev [인터페이스 명] 후 네트워크 재시작 하자
/var/log/message 확인 시 아래와같은 로그가 다량으로 발생 한다. nf_conntrack: table full, dropping packet.nf_conntrack: table full, dropping packet.nf_conntrack: table full, dropping packet.▶ 시스템이 처리할수 있는 패킷량이 초과되면서 발생하는 log conntrack 모듈이란?iptables 의 상태추적 모듈, NAT 테이블, FTP 등과 관련이 있는 모듈서버를 통하거나 서버에 일어나는 통신에 대한 아이피들의 접속상태에 대해서 일정시간 기억하는 모듈문제 발생하는것이 통신하는 패킷의 양의 많아지면 테이블의 기억공간에도 한계가 있는데 넘처나면서 커널의 에러가 발생하는 부분임시스템이 처리 할 수..
변경 전 > python 2.6변경 후 > python 2.7.6 # cd /usr/local/src# wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz# tar xzf Python-2.7.6.tgz# cd Python-2.7.6# ./configure# make# make altinstall - 버전 변경# mv /usr/bin/python /usr/bin/python-old# cp /usr/local/bin/python2.7 /usr/bin/python - yum 변경 # mv /usr/bin/yum /usr/bin/yum_old# sed -i 's/\/usr\/bin\/python/\/usr\/bin\/python2.6/g' /usr/bin..
네임서버 버전 확인은 아래와 같은 커멘드 입력하여 확인한다.# named -v
http://blog.helperchoi.com/109 Linux 시스템 이하에 할당된 메모리 사용율을 확인하기 위해서는 아래와 같이 free, vmstat, top 등의 명령들을 통해서 확인 가능하다. [root@TestDB ~]# [root@TestDB ~]# free total used free shared buffers cached Mem: 263205528 180578384 82627144 0 1219604 20582248 -/+ buffers/cache: 158776532 104428996 Swap: 104856244 2288948 102567296 [root@TestDB ~]# [root@TestDB ~]# [root@TestDB ~]# vmstat procs -----------memory..
kernel: CPU*: Temperature above threshold, cpu clock throttled (total events = *) kernel: CPU*: Temperature above threshold, cpu clock throttled (total events = *) kernel: CPU*: Temperature above threshold, cpu clock throttled (total events = *)[Hardware Error]: Machine check events logged 임계치보다 CPU온도가 높아 CPU clock조절한다는 로그이다.CPU팬 온도가 올라갈때 커널이 자동으로 온도가 높은 CPU온도를 낮춰준다. 해당 로그 발생 시 impi tool을 사용하여 하..
CentOS6.3 64bit 환경에서 서비스 운영 중 아래와 같은 로그가 확인 되어 구글링 해봤다. 서비스 데몬 : page allocation failure. order:4, mode:0x8020 kernel: Pid: 7036, comm: *** Not tainted 2.6.32-358.6.2.el6.x86_64 #1 kernel: Call Trace: kernel: [] ? __alloc_pages_nodemask+0x757/0x8d0 kernel: [] ? dma_generic_alloc_coherent+0xa6/0x160 kernel: [] ? x86_swiotlb_alloc_coherent+0x31..
nohup이란? (no hang-up signal) nohup으로 실행파일을 실행하게되면 터미널 연결이 끊어지더라도 실행을 멈추지 않는다. background / nohup 차이점 백그라운드 실행(&)으로 실행 시 터미널 세션이 끊길 경우 백그라운드에서 실행되는 서비스도 종료될 수 있다. # 123.sh & nohup 실행은 위에 언급듯이 터미널 연결이 끊어지더라도 계속 실행 된다. # nohup ./123.sh & nohup 실행 시 nohup.out 파일이 생성되며 nohup명령어를 실행한 위치에 텍스트파일이 생성된다. 데몬 실행 시 출력문은 nohup.out 파일에 지속적으로 생성되며 자동저장된다. ※ nohup.out 파일이 점점 증가하면서 디스크 용량에 많이 차지하게 된다. 출력을 자동저장 하지..
# Example config file /etc/vsftpd/vsftpd.conf # # The default compiled in settings are fairly paranoid. This sample file # loosens things up a bit, to make the ftp daemon more usable. # Please see vsftpd.conf.5 for all compiled in defaults. # # READ THIS: This example file is NOT an exhaustive list of vsftpd options. # Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's # ca..