12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879import requestsimport json api_url = "https://https://api.warpmemory.com/v1"#auth = ('id', 'passwd')auth = ()header = {'Content-Type': 'application/json'}server = "server-001.warpmemory.com"user = "test"passwd = "password"quota = 1000bandwidth = 200..
현재 Ansible 컨트럴 서버는 python2는 2.6이상, python3는 3.5 이상이 설치 되어있어야한다.설치 방법은 어러가지가 있으나, pip 로 설치하면 의존성 패키지까지 바로설치 되기 때문에 제일 간편하게 설치할 수 있다. python 설치easy_install pippip install ansible 기본값 설정 파일 /etc/ansible/ansible.cfg 생성기본 설정 파일 : https://raw.githubusercontent.com/ansible/ansible/devel/examples/ansible.cfg설정 디스크립션 : http://docs.ansible.com/ansible/latest/intro_configuration.html inventory 설정 파일 /etc/a..
tendo 모듈 설치 easy_install tendopip install tendo 12from tendo import singletonme = singleton.SingleInstance()cs 기존 스크립트에 위 내용만 추가 해주면 되고, 인스턴스가 실행중이면 에러 발생 시키고 sys.exit(-1) 됨최신 singleton.py 스트립트는 https://github.com/pycontribs/tendo/blob/master/tendo/singleton.py 여기서 확인하면 됨 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667..
fabric 설치 1pip install fabriccs install.py(fabfile.py) 스크립트 작성123456789101112131415161718192021222324252627from fabric.state import outputfrom fabric.api import run, env, put, sudo #env.hosts=[# "root@server-001.test.com"#]#env.password = "passwd" #env.warn_only = True#output.status = False#output.everything = Falseenv.disable_known_hosts = Trueenv.reject_unknown_hosts = False def install_daemon..
123456789101112131415161718192021>>> data = {"a": 10,"b": 5,"c": 7,"d": 2,"e": 9,"f": 1}>>> zip(data.values(), data.keys())[(10, 'a'), (7, 'c'), (5, 'b'), (9, 'e'), (2, 'd'), (1, 'f')]>>> min(zip(data.values(), data.keys()))(1, 'f')>>> max(zip(data.values(), data.keys())) (10, 'a')>>> sorted(zip(data.values(), data.keys()), reverse=True)[(10, 'a'), (9, 'e'), (7, 'c'), (5, 'b'), (2, 'd'), (1, 'f'..
- Total
- Today
- Yesterday
- engineering
- limits
- File
- Linux
- configuration
- 예제
- Module
- 외부링크
- 명령어
- error
- Windows
- check
- mysql
- Python
- code
- MariaDB
- PowerShell
- Web
- apache
- monitoring
- httpd
- 코드
- example
- Ansible
- deview
- command
- client
- 이슈처리
- 번역
- RESTful
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |