나름분류해서써보기173 rundeck 사용해보기 (14년6월) Rundeck이라는 오픈소스( http://rundeck.org/ )가 있다.원격지 서버에 command나 스크립트를 실행하는 용도로 현재 쓰고 있고. 나는 1.6버전을 사용 하고 있다. ( 얘는 나에게 학습비용 없이 스크립트 재사용할수도 있고, 운영효율화에 도움을 주고 있다. ) ( http://www.slideshare.net/asyd/rundeck 이 사람은 배포 할때 쓰나보다. ) dataSource.url: jdbc:h2:file:/data/program/rundeck/server/data/grailsdb;MVCC=true 데이터베이스는 h2를 기본으로 하고 있다. (1.5버전부터 H2가 기본 database이다.) 내가 생각하는 우선 런덱에 장점은 하나. 원격지 서버(=node)를 관리 하는 .. 2015. 11. 10. apache 로그 LogFormat "%h %D %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\, apache 에서 일반적으로 많이 사용하는 로그 형식은 아래와 같다.Common Log Format (CLF)"%h %l %u %t \"%r\" %>s %b"가상호스트 정보를 포함한 Common Log Format"%v %h %l %u %t \"%r\" %>s %b"NCSA extended/combined 로그 형식"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""Referer 로그 형식"%{Referer}i ->%U"Agent (브라우저) 로그 형식"%{User-agent}i"combined 로그형식을 주로 많이 사용하고, 추가로 %T 옵션을 두어, 요청을 처리 하는데 얼만큼 시간(초)이 걸렸는지 확인 하는게 좋다. %T의 경우, 요청을 처리.. 2015. 11. 10. PhantomJS 란? PhantomJS 설치. 그리고 quick-start (SCREEN CAPTURE , HEADLESS WEBSITE TESTING) phantomJS로 웹사이트 test 또는 화면캡쳐하거나 하는 품질과 관련된 일을 할수 있다.PhantomJS ([www.phantomjs.org](http://phantomjs.org)) is a headless WebKit scriptable with JavaScript or CoffeeScript. It is used by hundreds of [developers](https://github.com/ariya/phantomjs/wiki/Buzz) and dozens of [organizations](https://github.com/ariya/phantomjs/wiki/Users) for web-related development workflow.HEADLESS WEBSITE TESTINGSCRE.. 2015. 11. 10. phantomJs include jquery file and clipRect(object) phantomJs 스크립트 안에서 jquery를 사용하기 위해 jquery를 inject 하는 방법이다. ->page.injectJs("/test/program/phantomjs/script/include/jquery.min.js"); ( API문서를 찾아봤더니, 아직 TODO다.. ㅎㅎ http://phantomjs.org/api/webpage/method/inject-js.html ) 1) inject (file) - jquery파일을 로컬에 받아와도 되고, google에 링크를 걸어도 된다. - 나는 로컬에 받았고, 이렇게 사용했다. page.injectJs("/test/program/phantomjs/script/include/jquery.min.js"); - phantom.js 스크립트 전문이다.. 2015. 11. 10. 이전 1 ··· 38 39 40 41 42 43 44 다음