Author Archives: apollo89

About apollo89

아폴로89 입니다.

Apache MPM 방식 Prefork / Worker

  Apache MPM 방식 Prefork / Worker Prefork는 일반적으로 Single CPU 또는 Dual CPU에서 성능이 좋고 Worker는 일반적으로 멀티 CPU 시스템에서 성능이 좋다. Prefork <IfModule mpm_prefork_module> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule> Worker StartServers 2 … Continue reading

Posted in System, WEB/WAS | Tagged , , , | Leave a comment

PuTTY Connection Manager 에러..

  PuTTY Connection Manager 를 사용하다보면 아래와 같이 에러가 발생하는 경우가 있었다.. RUNTIME ERROR : Unknown exception occured Error : Object reference not set to an instance of an object. StackTrace : at x650e12b2512cbeed.x7fbe3d3b15648174.x765e6a19136b68b9() 도데체가 뭔문제인가 좀 고생을 해서 알아낸건.. … Continue reading

Posted in Util/Tools | Tagged , | Leave a comment

타임즈가 소개한 구글의 면접 질문들.

  1. 남아프리카에 잠복한 문제는 무엇인가 2. 왜 맨홀 뚜껑은 둥글까 3. 1조까지 세는데 시간이 얼마나 걸리겠는가. 가장 좋은 측정 방법을 제시하라 4. 3시 15분일 경우 시침과 분침의 각도는 몇인가 (참고로 ‘0’은 아니다) 5. 2차원 평면에서 다른 선상에 놓은 3개의 … Continue reading

Posted in Etc | Tagged , | Leave a comment

끊어진 NFS 파일핸들 이라는 파일 삭제하는 방법

  끊어진 NFS 파일핸들 이라는 파일 삭제하는 방법 서버에 계속 끊어진 NFS 파일핸들 이라고 삭제되지 않는 파일이 있었다.. 늘 못지우고 찜찜하게 남겨두었는데… 지우는 방법을 알았다.. 의외로 너무 간단한..ㅡㅡ;; #] service netfs restart 하고 지우면 된다..  

Posted in Network, System | Tagged , | Leave a comment

— 로 시작되는 파일(디렉토리)삭제..

  개발하다가 이상한 잘못해서 –으로 시작하는 디렉토리가 만들어졌다.. 지우려고 해도 안지워진다..ㅠㅠ -rw-r–r– 1 root root 30687232 10??25 10:55 –exclude=logs ]$ rm -rf –exclu* ]$ rm -rf \-\-exclu* ]$ rm -rf *exclu* rm: 인식할 수 없는 옵션 `–exclude=*logs*’ 더 많은 정보를 … Continue reading

Posted in System | Tagged , | Leave a comment

Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost.

  mysql 접속시에 자꾸 아래와 같은 에러가 나서.. Can not read response from server. Expected to read 4 bytes, read 0 bytes before connection was unexpectedly lost. context.xml의 설정을 아래와 같이 바꿔주니 해결된듯하다. <Resource auth=”Container” driverClassName=”com.mysql.jdbc.Driver” url=”jdbc:mysql://xxx.xxx.xxx.xxx:3306/dbname?characterEncoding=utf-8&amp;interactiveClient=true&amp;autoReconnect=true&amp;autoReconnectForPools=true&amp;useUnicode=true&amp;characterSetResults=UTF-8″ type=”javax.sql.DataSource” name=”jdbc/xxxxx” username=”userid” … Continue reading

Posted in Database, Java/JSP | Tagged , , , , | Leave a comment

터미널 색깔바꾸기

  터미널 ls할때 그 짙은 푸른색이 잘보이지도 않고 눈이 아파서 바꿀수있는지 찾아보았다… 기본 bash shell을 사용할 경우. # vi ~/.bashrc … export LS_COLORS=”di=01;33″:”fi=01;37″:”ex=01;32″:”ln=01;36″:”so=01;33″ # source ~/.bashrc “파일종류=속성;색상” ——————————————————————————- export LS_COLORS=”di=01;31″:”fi=01;37″:”ex=01;32″:”ln=01;36″:”so=01;33″ ——————————————————————————- 디렉토리 = 붉은색 일반파일 = 흰색 실행파일 = 연두색 … Continue reading

Posted in System | Tagged , , , , | Leave a comment

록펠러(십일조의 비밀을 안 최고의 부자)

  [구매하기] 록펠러(십일조의 비밀을 안 최고의 부자) 지난 주(5월2일 주일)에 QT 말씀 중에 나의 우상에 대해서 묵상하다 돈이 나의 우상임을 깨닳았다.. 고등부설교말씀중에도 야곱에 대해 들으면서 감사헌금과 십일조에 대해서 한번더 깨닳게 해주셨다.. 십일조생활을 한다고 하면서 여유가 있을때만 했던 내자신을 다시금 반성하게 … Continue reading

Posted in Reading | Tagged , , | Leave a comment

맥( Mac OSX) 에서 wget 설치하기..

  이런… Mac 을 쓰다보니.. wget이 없다… curl이 있긴한데.. 손에 안익어서 그런지 불편하다..ㅋㅋ 그래서 wget설치..ㅋ http://www.gnu.org/software/wget/ 에서 다운받는다 최신버전은 wget 1.2 이다. 다운받고 압출풀고 ]$ configure ]$ make ]$ sudo make install 하면 끝~ 우왕 좋당ㅋㅋㅋ  

Posted in System | Tagged , , , , | Leave a comment