1234567891011121314151617181920212223242526272829303132333435 function recurse_copy($src,$dst,$overwrite=TRUE) { $dir = opendir($src); @mkdir($dst); while(false !== ( $file = readdir($dir)) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir($src . '/' . $file) ) { recurse_copy($src . '/' . $file,$dst . '/' . $file, $overwrite); } else { if($overwrite) { copy($src . '/' . $file,$dst . '..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263$ScriptBlock = { param( [Parameter(Position=0, Mandatory=$false)][int]$threadNum=$(throw "threadNum param is not null"), [Parameter(Position=0, Mandatory=$false)][string]$targetServer=$(throw "targetServer param is not null"), [Parameter(Position=0, Mandatory=$false)][string]$comm..
123456schtasks /Create [/S system [/U username [/P [password]]]][/RU username [/RP [password]] /SC schedule [/MO modifier] [/D day][/M months] [/I idletime] /TN taskname /TR taskrun [/ST starttime][/RI interval] [ {/ET endtime | /DU duration} [/K] [/XML xmlfile] [/V1]] [/SD startdate] [/ED enddate] [/IT] [/Z] [/F]cs https://msdn.microsoft.com/ko-kr/library/windows/desktop/bb736357(v=vs.85).aspx ..
1. Overview네이버에서 주최한 DEVIEW 2016 개발자 컨퍼런스 참석 후기 입니다.DEVIEW 2016은 2016.10.24(Mon) ~ 2016.10.25(Tue) 양일간, 서울 COEX Grand Ballroom 에서 개최되었으며, 본 리뷰는 25일에 본인이 참석한 트렉에 대한 리뷰입니다.2. Schedule전체 스케줄 중, 본인이 참석한 섹션 스케줄입니다.작년 까지만 해도, 빅데이터 수집/분석이 주를 이루었으나, 올해는 빅데이터를 넘어 머신러닝 활용이 주를 이루었습니다.본인은 현재 직무와 연관있는 서버 플랫폼/인프라 구축 및 성능튜닝 관련 트랙과, 앞으로의 인공지능을 사용한 서버 인프라 관리가 어떻게 가능할지 가늠해 보기 위하여 머신러닝, 데이터 통계 관련 트랙을 선택하였습니다.DAY 2..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677%pyspark import refrom pyspark.sql import Rowfrom pyspark.sql.types import * APACHE_ACCESS_LOG_PATTERN = '(\S+) (\S+) (\S+) \[([^\]]*)\] \"([^\"]*)\"(?: (\S+) (\S+) ([^ \"]*|\"[^\"]*\") (\".*\")?)? (\S+) (\S+)' def parse_apache_log_line(logline): match ..
https://github.com/purcell/airspeed 1234567891011121314import airespeed t = airspeed.Template("""Old people:#foreach ($person in $people) #if($person.age > 70) $person.name #end#endThird person is $people[2].name""")people = [{'name': 'Bill', 'age': 100}, {'name': 'Bob', 'age': 90}, {'name': 'Mark', 'age': 25}]print t.merge(locals()) Colored by Color Scriptercs 123456789 Old people: Bill Bob Thi..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149import pprintfrom pyparsing import Word, Literal, Forward, ..
pyparsing Examples 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107# jsonParser.py## Implementation of a simple JSON parser, returning a hierarchical# ParseResults object support both list- and dict-style data access.## Copyright 200..
1. 개요PHP Restful API 및 Swagger UI 제공을 위한 Silex 프레임워크 설치 및 셋팅 방법Silex 프레임워크, Swagger UI를 이용한 API 개발 방법2. 셋팅2.1. Silex 프레임워크 설치vi /home/apps/php/lib/php.ini- allow_url_fopen = Off+ allow_url_fopen = On mkdir /home/dsan/program/www/apicd /home/dsan/program/www/apicurl -s https://getcomposer.org/installer | phpphp composer.phar require silex/silexphp composer.phar require jdesrosiers/silex-swagger-p..
1. 개요Bacula는 Bacula Systems사 에서 개발하여, 오픈 소소로 공개한 네트워크 백업 솔루션이다.유료 엔터프라이즈 버전과 무료 커뮤니티 버전으로 구분되며, 이 문서는 커뮤니티 버전인 Open source Bacula에 대해 다룬다.1.1. 특징쉬운 설치 및 쉬운 설정다양한 백업 장치 지원(하드디스크, LTO 1-5 테이프 장치 등등)다양한 모니터링 툴 지원증분, 차등, 차등증분, 변경분, 가상백업, 백업주기, 압축 프로토콜 등 다양한 백업 방식 지원원하는 경로 설정 및 백업 전 후 실시할 명령어 지정 가능네트워크 백업되는 데이터의 암호화를 위한 다양한 옵션(MD5, SHA, TLS, CRAM-MD5 등등)압축1.2. 공식적으로 지원되는 백업 서버 OS리눅스윈도우맥다양한 유닉스1.3. 공식..
- Total
- Today
- Yesterday
- 외부링크
- configuration
- MariaDB
- monitoring
- Windows
- 이슈처리
- engineering
- Ansible
- RESTful
- Web
- 예제
- httpd
- PowerShell
- limits
- code
- command
- error
- mysql
- 코드
- example
- File
- Python
- 명령어
- 번역
- deview
- Module
- check
- Linux
- client
- apache
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |