python 讀取Linux伺服器上的檔案
阿新 • • 發佈:2018-12-24
使用Python語句,讀取Linux遠端伺服器上的檔案列印到控制檯的程式碼實現: 下載包:paramiko import paramiko #伺服器資訊,主機名(IP地址)、埠號、使用者名稱及密碼 hostname = "" port = 22 username = "" password = "" client = paramiko.SSHClient() client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) client.connect(hostname, port, username, password, compress=True) sftp_client = client.open_sftp() remote_file = sftp_client.open("/home/...txt")#檔案路徑 try: for line in remote_file: print(line) finally: remote_file.close() --------------------- 作者:qqqwww159 來源:CSDN 原文:https://blog.csdn.net/qqqwww159/article/details/78783010 版權宣告:本文為博主原創文章,轉載請附上博文連結!