python读取服务器日志的方法

import paramiko

#读取服务器日志,并打印

def get_server_log():

hostname = “172.16.176.xx”

port = 22

username = “app”

password = “123456”

client = paramiko.SSHClient()

client.set_missing_host_key_policy(paramiko.AutoAddPolicy())

client.connect(hostname, port, username, password, compress=True)

remote_command = “tail -n100 /home/app/sxpservice/logs/server.log”

stdin, stdout, stderr = client.exec_command(remote_command)

last_line = stdout.read()

a = last_line.decode(‘utf-8’)

print(a)

内容出处:,

声明:本网站所收集的部分公开资料来源于互联网,转载的目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。如果您发现网站上有侵犯您的知识产权的作品,请与我们取得联系,我们会及时修改或删除。文章链接:http://www.yixao.com/procedure/9719.html

发表评论

登录后才能评论