자동화 세계에서 원격으로 명령을 실행하면 스크립트의 효율성과 다양성이 향상될 수 있습니다. Python은 paramiko 모듈을 사용하여 이를 수행하는 강력한 방법을 제공합니다.
사용법을 설명하기 위해 알려진 비밀번호가 있고 "remotehost"라는 원격 서버에서 명령을 실행한다고 가정해 보겠습니다. 수동으로 다음을 사용하여 이 작업을 수행할 수 있습니다.
<code class="bash">ssh user@remotehost</code>
Python에서는 paramiko를 사용하여 이 프로세스를 자동화할 수 있습니다.
<code class="python">import paramiko # Initialize SSH client ssh = paramiko.SSHClient() ssh.connect("remotehost", username="user", password="password") # Execute remote command ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command("your_remote_command")</code>
exec_command 메서드는 세 개의 파일과 유사한 개체를 반환합니다. 원격 명령으로 데이터 전송, 표준 출력 캡처를 위한 stdout, 표준 오류 캡처를 위한 stderr.
비밀번호 대신 SSH 키를 사용하는 경우 코드는 다음과 같이 수정할 수 있습니다.
<code class="python">import paramiko # Load private key k = paramiko.RSAKey.from_private_key_file("keyfilename.pem") # Set missing host key policy ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # Connect using SSH key ssh.connect("remotehost", username="user", pkey=k) # Execute remote command ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command("your_remote_command")</code>
paramiko를 사용하면 Python 스크립트에서 원격 명령을 실행할 수 있는 유연성을 얻을 수 있으므로 로컬 컴퓨터에서 편안하게 다양한 작업을 자동화할 수 있습니다.
위 내용은 SSH를 사용하여 Python으로 원격 명령을 자동화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!