百度360必应搜狗淘宝本站头条
当前位置:网站首页 > IT技术 > 正文

20个实用Python运维脚本(收藏级)(python 运维工具)

wptr33 2025-07-03 20:22 58 浏览

系统环境:支持 Linux(Ubuntu / CentOS / Debian)和 Windows

适合人群:系统管理员、DevOps 工程师、Python 初中级用户

文章亮点:涵盖文件处理、系统监控、服务管理、日志分析、网络工具等多个维度,每个脚本都可直接落地使用。





01. 查看系统资源占用情况(跨平台)


import psutil


print(f"CPU 使用率:{psutil.cpu_percent()}%")

print(f"内存使用率:{psutil.virtual_memory().percent}%")

print(f"磁盘使用率:{psutil.disk_usage('/').percent}%")





02. 自动清理

/tmp

目录下7天前的文件(Linux)


import os, time


tmp_dir = "/tmp"

now = time.time()

for f in os.listdir(tmp_dir):

path = os.path.join(tmp_dir, f)

if os.path.isfile(path) and os.stat(path).st_mtime < now - 7 * 86400:

os.remove(path)





03. 检查某个端口是否开放


import socket


def check_port(host, port):

with socket.socket() as s:

result = s.connect_ex((host, port))

return result == 0


print("端口是否开放:", check_port("127.0.0.1", 22))





04. 自动备份指定文件夹


import shutil

from datetime import datetime


src = "/etc"

dst = f"/backup/etc_{datetime.now():%Y%m%d%H%M}.tar.gz"

shutil.make_archive(dst.replace('.tar.gz',''), 'gztar', src)





05. 监控某服务是否在线,若离线则重启


import subprocess


def restart_service(service):

subprocess.run(["systemctl", "restart", service])


def is_active(service):

status = subprocess.getoutput(f"systemctl is-active {service}")

return status.strip() == "active"


svc = "nginx"

if not is_active(svc):

restart_service(svc)





06. 获取公网 IP 地址


import requests


ip = requests.get("https://api.ipify.org").text

print(f"公网IP:{ip}")





07. 查看当前登录的所有用户


import os

print(os.popen("who").read())





08. 自动打包并上传日志到远程


import tarfile

import paramiko


with tarfile.open("logs.tar.gz", "w:gz") as tar:

tar.add("/var/log", arcname="log")


ssh = paramiko.Transport(("remote_host", 22))

ssh.connect(username="user", password="pass")

sftp = paramiko.SFTPClient.from_transport(ssh)

sftp.put("logs.tar.gz", "/remote/path/logs.tar.gz")

sftp.close()

ssh.close()





09. 分析日志文件中最常出现的错误


from collections import Counter


with open("/var/log/syslog") as f:

errors = [line for line in f if "error" in line.lower()]

keywords = [line.split()[0] for line in errors]

print(Counter(keywords).most_common(10))





10. 快速搭建一个本地Web服务(静态目录)


import http.server

import socketserver


PORT = 8000

handler = http.server.SimpleHTTPRequestHandler

httpd = socketserver.TCPServer(("", PORT), handler)

print(f"Serving at port {PORT}")

httpd.serve_forever()





11. 检查磁盘分区情况


import shutil


total, used, free = shutil.disk_usage("/")

print("总空间:", total // (2**30), "GB")

print("已用:", used // (2**30), "GB")

print("可用:", free // (2**30), "GB")





12. 获取指定用户的 UID 与 GID


import pwd


user = "root"

u = pwd.getpwnam(user)

print(f"{user} 的 UID: {u.pw_uid}, GID: {u.pw_gid}")





13. 定时执行脚本(配合 crontab)


# 编辑 crontab

# crontab -e


# 每天 2 点执行
/usr/local/bin/check_nginx.py

# 0 2 * * * /usr/bin/python3 /usr/local/bin/check_nginx.py





14. 发送告警通知到邮箱


import smtplib

from email.message import EmailMessage


msg = EmailMessage()

msg.set_content("服务异常,请检查!")

msg["Subject"] = "运维告警"

msg["From"] = "admin@example.com"

msg["To"] = "user@example.com"


with smtplib.SMTP("smtp.example.com", 25) as server:

server.login("admin", "password")

server.send_message(msg)





15. 检查 SSL 证书过期时间


import ssl, socket

from datetime import datetime


hostname = 'example.com'

context = ssl.create_default_context()

with socket.create_connection((hostname, 443)) as sock:

with context.wrap_socket(sock, server_hostname=hostname) as ssock:

cert = ssock.getpeercert()

expire = datetime.strptime(cert['notAfter'], '%b %d %H:%M:%S %Y %Z')

print("证书过期时间:", expire)





16. 快速创建多个用户账号(批量)


import os


for i in range(10):

username = f"user{i}"

os.system(f"useradd {username} -m -s /bin/bash")





17. 检查文件MD5值


import hashlib


def get_md5(file_path):

with open(file_path, 'rb') as f:

return hashlib.md5(f.read()).hexdigest()


print(get_md5("/etc/passwd"))





18. 自动拉取 Git 仓库更新


import os


os.chdir("/opt/project")

os.system("git pull origin main")





19. 获取系统启动时间


import psutil

import time


boot = psutil.boot_time()

print("系统启动时间:", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(boot)))





20. 查找大文件(>100MB)


import os


for root, dirs, files in os.walk("/"):

for file in files:

path = os.path.join(root, file)

try:

if os.path.getsize(path) > 100 * 1024 * 1024:

print(path)

except:

continue




如果你觉得这些脚本实用,记得收藏 + 关注我,后续会带来完整的《Python运维脚本100例(收藏级)》!

相关推荐

oracle数据导入导出_oracle数据导入导出工具

关于oracle的数据导入导出,这个功能的使用场景,一般是换服务环境,把原先的oracle数据导入到另外一台oracle数据库,或者导出备份使用。只不过oracle的导入导出命令不好记忆,稍稍有点复杂...

继续学习Python中的while true/break语句

上次讲到if语句的用法,大家在微信公众号问了小编很多问题,那么小编在这几种解决一下,1.else和elif是子模块,不能单独使用2.一个if语句中可以包括很多个elif语句,但结尾只能有一个...

python continue和break的区别_python中break语句和continue语句的区别

python中循环语句经常会使用continue和break,那么这2者的区别是?continue是跳出本次循环,进行下一次循环;break是跳出整个循环;例如:...

简单学Python——关键字6——break和continue

Python退出循环,有break语句和continue语句两种实现方式。break语句和continue语句的区别:break语句作用是终止循环。continue语句作用是跳出本轮循环,继续下一次循...

2-1,0基础学Python之 break退出循环、 continue继续循环 多重循

用for循环或者while循环时,如果要在循环体内直接退出循环,可以使用break语句。比如计算1至100的整数和,我们用while来实现:sum=0x=1whileTrue...

Python 中 break 和 continue 傻傻分不清

大家好啊,我是大田。...

python中的流程控制语句:continue、break 和 return使用方法

Python中,continue、break和return是控制流程的关键语句,用于在循环或函数中提前退出或跳过某些操作。它们的用途和区别如下:1.continue(跳过当前循环的剩余部分,进...

L017:continue和break - 教程文案

continue和break在Python中,continue和break是用于控制循环(如for和while)执行流程的关键字,它们的作用如下:1.continue:跳过当前迭代,...

作为前端开发者,你都经历过怎样的面试?

已经裸辞1个月了,最近开始投简历找工作,遇到各种各样的面试,今天分享一下。其实在职的时候也做过面试官,面试官时,感觉自己问的问题很难区分候选人的能力,最好的办法就是看看候选人的github上的代码仓库...

面试被问 const 是否不可变?这样回答才显功底

作为前端开发者,我在学习ES6特性时,总被const的"善变"搞得一头雾水——为什么用const声明的数组还能push元素?为什么基本类型赋值就会报错?直到翻遍MDN文档、对着内存图反...

2023金九银十必看前端面试题!2w字精品!

导文2023金九银十必看前端面试题!金九银十黄金期来了想要跳槽的小伙伴快来看啊CSS1.请解释CSS的盒模型是什么,并描述其组成部分。...

前端面试总结_前端面试题整理

记得当时大二的时候,看到实验室的学长学姐忙于各种春招,有些收获了大厂offer,有些还在苦苦面试,其实那时候的心里还蛮忐忑的,不知道自己大三的时候会是什么样的一个水平,所以从19年的寒假放完,大二下学...

由浅入深,66条JavaScript面试知识点(七)

作者:JakeZhang转发链接:https://juejin.im/post/5ef8377f6fb9a07e693a6061目录...

2024前端面试真题之—VUE篇_前端面试题vue2020及答案

添加图片注释,不超过140字(可选)...

今年最常见的前端面试题,你会做几道?

在面试或招聘前端开发人员时,期望、现实和需求之间总是存在着巨大差距。面试其实是一个交流想法的地方,挑战人们的思考方式,并客观地分析给定的问题。可以通过面试了解人们如何做出决策,了解一个人对技术和解决问...