목록분류 전체보기 (240)
미니옵빠의 code stubs
iBator Eclipse plugin: http://ibatis.apache.org/tools/ibator (myBatis 로 바뀌어서 iBator 을 못 찾는 사람들을 위해 -.-)
[Server]1. NFS 로 연결할 폴더 준비2. /etc/exports 파일 생성 및 접근 권한 추가/home1/irteam/nas 10.101.43.2(rw,sync) (폴더 path 클라이언트 IP (rw|ro,sync) 3. NFS 서비스 start/sbin/service nfs start 4. NFS 설정이 잘 되었는지 확인/usr/sbin/exportfs -v [Client] 1. portmap 서비스 실행/sbin/service portmap status 로 실행 여부 확인 후/sbin/service portmap start 2. 서버의 NFS 공유 내역 확인/usr/sbin/showmount -e 10.101.27.162 (서버 IP) 3. 클라이언트의 마운트 될 폴더 생성 (mkdir)..
1. zmodem 설치yum install lrzsz 2. binary 모드 설정rz -b sz -b[출처] rz / sz|작성자 다니
구동 중인 Tomcat 의 Java Heap 분석 방법 * OutOfMemoryError (OOME) 시점에 Java Heap 메모리 덤프* tomcat 의 구동 옵션에 "-XX:+HeapDumpOnOutOfMemoryError" 추가* OOME 발생 시 tomcat 를 구동시킨 스크립트가 위치한 곳에 "java_pidPid.hprof" dump 파일이 생성됨 * 상시 Java Heap 메모리 덤프* Java6 이상* jmap 사용1. ps 명령 등으로 Tomcat 의 Pid 를 확인2. 아래 명령으로 dump 파일 생성jmap -dump:format=b,file=heap.hprof [Pid] * format=b 는 바이너리를 의미하며, file은 생성될 덤프파일 명이다. 이외 옵션은 특별히 사용할 필요..
ps 명령 등을 활용하여, 검색된 전체 프로세스를 kill 하고 싶을 경우 ps -ef | grep httpd | grep -v grep | awk '{print $2}' | xargs kill -9
[mysql] rand, rand(), rand(n) , 랜덤숫자생성 1. rand() - 랜덤 정렬mysql> SELECT * FROM tbl_name ORDER BY RAND(); 2. rand(n) - 랜덤 숫자 (범위)예시) 5 부터 12까지 랜덤 숫자 생성i : 최소값, j : 최대값i
출처: http://www.debianhelp.co.uk/crontab.htm Run programs at startup via crontab There is an easy way to start a program during system boot. Just put this in your crontab: @reboot /path/to/my/program The command will be executed on every (re)boot. Crontab can be modified by running #crontab -e Other available Options string meaning ------ ----------- @reboot Run once, at startup. @yearly Run once..
SVN 작업 시 아래와 같은 unencrypted 관련 메시지를 만났을 때 -----------------------------------------------------------------------ATTENTION! Your password for authentication realm: ncc repository can only be stored to disk unencrypted! You are advised to configureyour system so that Subversion can store passwords encrypted, ifpossible. See the documentation for details. You can avoid future appearances of this w..
분산 메모리 캐쉬 시스템인 Memcached - Memcached 는 데몬이다.- 설치시 libevent 라이브러리가 필수- php 에서 사용하기 위해서는 PECL Extension 을 설치해 주어야 함--- 1. phpize--- 2. ./configure --enable-memcache -with-php-config=.../apps/php/bin/php-config--- 3. 이후 module/*.so 파일을 이용하여 사용 참고사이트:http://memcached.org/ http://libevent.org/ http://pecl.php.net/package/memcache http://pecl.php.net/package/memcached http://www.solanara.net/solanara/..
#!/bin/sh ########################## Static file creation#########################TEMP_FILE="/index.html.temp"FAIL_FILE="/index.html.fail"DEST_FILE="/index.html" # Temp 파일로 먼저 받아서curl -s --connect-timeout 10 'http://www.xxx.com/index.xxx' -o $TEMP_FILE # 마지막 라인만 읽어 success flag를 확인FLAG=`tail -n 1 ${TEMP_FILE}` echo "Flag message: ${FLAG}" if [[ $FLAG == *success* ]]then mv ${TEMP_FILE} ${DEST_FI..