Python을 사용하여 SSH를 통해 명령 수행
원격 컴퓨터에서 명령 실행을 자동화하는 것은 시스템 관리의 일반적인 작업입니다. Python의 하위 프로세스 모듈은 로컬 명령을 처리할 수 있지만 SSH를 통해 원격 호스트에서 명령을 실행해야 하는 경우 어떻게 해야 합니까?
이 문제를 극복하려면 Paramiko 라이브러리를 사용하는 것이 좋습니다. Paramiko는 SSH 통신을 위한 포괄적인 도구 세트를 제공합니다. Paramiko를 사용하여 원격 명령 실행을 수행하는 방법을 살펴보겠습니다.
Paramiko를 사용하여 원격 명령 실행
<code class="python">import paramiko # Connect to the remote host with username, password, and hostname ssh = paramiko.SSHClient() ssh.connect(hostname, username, password) # Execute a command using exec_command ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(command) # Handle output and error output print(ssh_stdout.read().decode()) print(ssh_stderr.read().decode()) # Close the connection ssh.close()</code>
인증을 위해 SSH 키 사용
인증에 SSH 키를 사용하려는 경우 paramiko.RSAKey.from_private_key_file()을 사용하여 키를 설정하면 됩니다.
<code class="python">k = paramiko.RSAKey.from_private_key_file(keyfilename) ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(hostname, username, pkey=k)</code>
사용 예
예를 들어 다음 코드를 사용하여 원격 명령의 출력을 실행하고 캡처할 수 있습니다.
<code class="python">ssh = paramiko.SSHClient() ssh.connect("remote_host", "username", "password") stdin, stdout, stderr = ssh.exec_command("df -h") output = stdout.read().decode() ssh.close() print(output)</code>
Paramiko의 기능을 활용하면 손쉽게 명령을 실행하고 출력을 검색할 수 있습니다. Python 스크립트를 통해 편안하게 원격 시스템의 오류를 처리할 수 있습니다.
위 내용은 Python을 사용하여 SSH를 통해 원격으로 명령을 실행하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!