본문 바로가기

전체 글

Netflix:Hystrix 사용해보기 주소 https://github.com/Netflix/Hystrix/wikiIn a distributed environment, inevitably some of the many service dependencies will fail. Hystrix is a library that helps you control the interactions between these distributed services by adding latency tolerance and fault tolerance logic. Hystrix does this by isolating points of access between the services, stopping cascading failures across them, and .. 더보기
Ubuntu 14.04의 mysql 5.5 -> 5.6 Ubuntu 14.04의 mysql 기본 버전 - 5.5 sudo apt-get purge mysql-server mysql-client mysql-common mysql-server-core-5.5 mysql-client-core-5.5 sudo rm -rf /etc/mysql /var/lib/mysql sudo apt-get autoremove sudo apt-get autoclean Ubuntu 14.04의 mysql 기본 버전 - 5.6으로 변경 $ sudo apt-get install software-properties-common $ sudo add-apt-repository -y ppa:ondrej/mysql-5.6 $ sudo apt-get update $ sudo apt-get insta.. 더보기
취미생활-Android WebView의 컨텐츠에서 HTTP/HTTPS 특정사이트를 WebView를 이용해서 보여주는 샘플을 만들다 보니 이미지는 죄다 불러오지 못하고.. logcat에는 "This request has been blocked; the content must be served over HTTPS" 이런 로그를 남기고 있다. 뭐, HTTPS의 컨텐츠에 HTTP호출을 할 수 없다.(이미지가 http://img... 로 시작)는 것. 대략적인 이유는 google api 특정 버전 이상부터는 보안상의 이유로 https 컨텐츠내 url호출은 모두 https만 허용되는 것 같다. 우선 찾아본 회피 방법으로 회피를 하고..... 하고...... 하고..... 넘어가자. webView.getSettings().setMixedContentMode ( WebSettings.M.. 더보기
Tomcat FullGC 분석해보기 간혹 생기는 FullGC인데, 순간적으로 안정화 되다보니 잡기가 힘듬. '-XX:+HeapDumpBeforeFullGC' 을 사용하여 덤프를 받았지만, 내용확인 불가. 손권남님의 추천으로 '-XX:+PrintClassHistogramAfterFullGC' 적용 후, 운영중 추천 옵션 -XX:+PrintClassHistogramAfterFullGC -XX:+PrintClassHistogramBeforeFullGC "-XX:+PrintClassHistogramAfterFullGC -XX:+PrintClassHistogramBeforeFullGC" - GC가 오래걸릴 경우 분석을 위한 기본 옵션 -XX:+HeapDumpBeforeFullGC -XX:+HeapDumpAfterFullGC "-XX:+HeapDum.. 더보기
Nvidia 드라이버 업데이트 후, 콘솔 진입 처리. Linux Mint 17 Nvidia 드라이버 업데이트 후, 콘솔 진입 처리. - Mint 에서 nvidia dirver를 업데이트 하면 xorg.conf를 관련 안내와 함께 콘솔로 바로 진입.- /etc/X11/xorg.conf 를 추가해야 함.Section "Device"Identifier "nvidia"Driver "nvidia"BusId "PCI:1@0:0:0"... Option .......EndSection reboot 실행 설치 후, 그냥 써도 문제는 없는데.. 이게 참 난감한게.. 특정 에디터들이 스크롤 할때마다 자꾸 텍스트 라인이 중복되는 현상이 발생한다. 그러면 다시 스크롤을 해서 풀어줘야 하고.. 환장하지.. 드라이버 업뎃해서 사용하니 위의 문제는 사라졌다. 잇힝.~ 더보기