Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ubuntu
- ntp
- 센토스
- DISK
- fdisk
- EC2
- port
- AWS
- terraform
- EBS
- Linux
- 리눅스
- awscli
- resize2fs
- onpromise
- RDS
- xen
- 인스턴스타입
- DELETE
- 아마존
- x-forward-for
- Query
- deragistration
- nvme
- Error
- centos
- x-real-ip
- Windows
- VPN
- mysql
Archives
- Today
- Total
Cloud
windows winrm 을 사용한 log 관리 본문
#!/usr/bin/env python3 -u
import winrm
hosts = {'$hostname':'$ip'}
user_id = '$id'
user_pw = '$password'
file_compress_cmd = '''
e:\gamepub\cygwin\cygnative find /cygdrive/e/game/servers -type f -name "*.log" -mtime +2 -mtime -5 -exec 'gzip -v' {} ;
'''
file_move_cmd = '''
e:\game\cygwin\cygnative rsync -av --include=*.log.gz --exclude=*.* --remove-source-files /cygdrive/e/game/servers/* /cygdrive/f/logbackup/
'''
def run_windows_cmd(cmd):
result_byte = session.run_cmd(cmd)
print(result_byte.std_out.decode('utf-8'))
return
for hostname, ip in hosts.items():
print(hostname, ip)
session = winrm.Session(ip, auth=(user_id, user_pw))
run_windows_cmd(file_compress_cmd)
run_windows_cmd(file_move_cmd)
'인프라관리-코드' 카테고리의 다른 글
온프라미스에서 테라폼 사용하기 (0) | 2024.09.25 |
---|---|
여러개의 docker compose 파일 사용 시 주의사항 (0) | 2024.01.04 |
rediscli flushdb - for문 사용 (0) | 2023.07.27 |
windows winrm 을 사용한 date 확인 (0) | 2023.07.27 |
Comments