python 리눅스 원격접속
-
[Python] paramiko 모듈을 이용한 리눅스 디스크 사용량 체크Python/Python for Linux 2018. 5. 13. 23:23
파이썬(python) paramiko 모듈을 이용한 디스크 사용량 체크 import paramiko import re p = re.compile('(\d+)[%]') ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(host, username='', password='') stdin, stdout, stderr = ssh.exec_command('df -h') stdin.close() for line in stdout.read().splitlines(): m = p.findall(str(line)) if m: if int(m[0]) > 50: print('파일시스템이 50% 초과하였..