


This article mainly introduces the sharing of practical automated operation and maintenance Python scripts. It has certain reference value. Now I share it with everyone. Friends in need can refer to it
Send sh commands in parallel
pbsh.py
#!/usr/bin/python # -*- coding: UTF-8 -*- import paramiko import sys import threading #Copy local file to remote server. def sshclient_scp(hostname, port, username, password, local_path, remote_path): t = paramiko.Transport((hostname, port)) t.connect(username=username, password=password) # 登录远程服务器 sftp = paramiko.SFTPClient.from_transport(t) # sftp传输协议 sftp.put(local_path, remote_path) t.close() def sshclient_scp_get(hostname, port, username, password, remote_path, local_path): t = paramiko.Transport((hostname, port)) t.connect(username=username, password=password) # 登录远程服务器 sftp = paramiko.SFTPClient.from_transport(t) # sftp传输协议 sftp.get(remote_path, local_path) t.close() def sshclient_execmd(hostname, port, username, password, execmd): paramiko.util.log_to_file("paramiko.log") s = paramiko.SSHClient() s.set_missing_host_key_policy(paramiko.AutoAddPolicy()) s.connect(hostname=hostname, port=port, username=username, password=password) stdin, stdout, stderr = s.exec_command(execmd) stdin.write("Y") # Generally speaking, the first connection, need a simple interaction. line=stdout.read() s.close() print (hostname+":") print line try: file_name = sys.argv[1] cmd= sys.argv[2] except IndexError: print 'Wrong params!' print 'Usage :' print ' batch.py "$OS_LIST_FILE" "$BATCH_EXECUTE_CMD"' print 'cat oslist.txt:' print '192.168.0.1,22,oracle,passwd1' print '192.168.0.2,22,oracle,passwd1' print '192.168.0.3,24,oracle,passwd1' print 'Format is :' print 'IPADDR,SSHPORT,USERNAME,PASSWORD' print 'Examples of usage:' print './batch.py "/root/workspace/oslist.txt" "df -h"' sys.exit() #file_name = sys.argv[1] #cmd= sys.argv[2] #maintenance_osinfo with open(file_name) as file_object: for line in file_object: splits_str = line.rstrip().split(',') a=threading.Thread(target=sshclient_execmd,args=(splits_str[0],int(splits_str[1]),splits_str[2],splits_str[3],cmd)) a.start() #print sshclient_execmd(splits_str[0],int(splits_str[1]),splits_str[2],splits_str[3],cmd) # print sshclient_scp(splits_str[0], int(splits_str[1]), splits_str[2], splits_str[3], file_name, splits_str[4]+file_name)
pythonSend The email
sendmail.py #!/usr/bin/python # -*- coding: UTF-8 -*- import smtplib import email.MIMEMultipart import email.MIMEText import email.MIMEBase import sys #from email.mime.application import MIMEApplication #import os.path def sendmail(f_from, f_to, f_cclist, alert_info, f_subject): From = f_from To = f_to #file_name = f_file_name server = smtplib.SMTP("smtp.xxxx.com.cn") server.login("xxxx","xxxx") #构造MIMEMultipart对象做为根容器 main_msg = email.MIMEMultipart.MIMEMultipart() text_msg = email.MIMEText.MIMEText("您好。<br><br><br><br>" + alert_info.title() + "<br>任凤军 <br>" "xx技术股份有限公司 <br>" "手机: xx<br>" "座机:xxx<br>" "邮箱:xxxx@xx.com<br>" "地址:xxxx<br>" "邮编:130011<br>" "===================================<br>" "",'HTML','utf-8') main_msg.attach(text_msg) #xlsxpart = MIMEApplication(open(file_name, 'rb').read()) #xlsxpart.add_header('Content-Disposition', 'attachment', filename=f_subject+".docx") #main_msg.attach(xlsxpart) # 设置根容器属性 main_msg['From'] = From main_msg['To'] = To main_msg['Cc'] = ",".join(f_cclist) main_msg['Subject'] = f_subject main_msg['Date'] = email.Utils.formatdate() #f_cclist为完整的需要接收邮件的列表,原本只存放抄送列表,这里需要添加上收件人 f_cclist.append(To) # 得到格式化后的完整文本 fullText = main_msg.as_string() # 用smtp发送邮件 try: server.sendmail(From, f_cclist, fullText) finally: server.quit() if __name__ == "__main__": #sys.setdefaultencoding('utf-8') message= [ 'Usage:', ' sendmail.py "topic" "mail body text" "mail to"', 'Examples of usage:', ' sendmail.py "topic" "hello world" "14638852@qq.com"', ] try: topic = str(sys.argv[1]).encode("utf-8") alert = str(sys.argv[2]).encode("utf-8") mailto = str(sys.argv[3]).encode("utf-8") except IndexError: for line in message: print line+'\n' sys.exit() cclist=[] #clist =[] sendmail("xxxx@xxx",mailto,cclist,alert, topic) 备注: sendmail("xxxx@gmail.com",mailto,cclist,alert, topic) 发件人,收件人,抄送列表,正文内容,邮件标题 Usage: sendmail.py "topic" "mail body text" "mail to" Examples of usage: sendmail.py "topic" "hello world" "14638852@qq.com" ./sendmail.py "topic" "hello world" "14638852@qq.com"
smtp and email signature, as well as the sender are fixed values and need to be modified by yourself.
Related recommendations:
Detailed examples of how to self-start and schedule tasks in Python scripts under Linux
Share in IIS An example tutorial on running Python scripts using CGI
The above is the detailed content of Practical automated operation and maintenance Python script sharing. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
