python操作服务器

一:使用 paramiko 进行SSH连接

首先确保已安装paramiko库:pip install paramiko

代码示例

python 复制代码
在这里插入代码片import paramiko

hostname = 'hostname'
username = 'user'
password = 'passwd'

client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect(hostname, username=username, password=password)

stdin, stdout, stderr = client.exec_command('ls')
for line in stdout:
    print(line.strip('\n'))
    
client.close()

二:使用 smtplib 发送邮件到SMTP服务器

代码示例

python 复制代码
import smtplib
from email.mime.text import MIMEText
from email.header import Header

# 邮件发送者和接收者
sender = 'from@example.com'
receivers = ['to@example.com']

# 邮件内容
message = MIMEText('Python 邮件发送测试...', 'plain', 'utf-8')
message['From'] = Header("Python教程", 'utf-8')
message['To'] =  Header("测试", 'utf-8')
message['Subject'] = Header('Python SMTP 邮件测试', 'utf-8')

try:
    smtpObj = smtplib.SMTP('localhost')
    smtpObj.sendmail(sender, receivers, message.as_string())    
    print("邮件发送成功")
except smtplib.SMTPException as e:
    print("Error: 无法发送邮件", e)

三:上传文件到服务器

python 复制代码
import paramiko

def upload_file_to_server(hostname, port, username, password, local_file_path, remote_file_path):
    try:
        client = paramiko.SSHClient()
        client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        client.connect(hostname, port=port, username=username, password=password)

        ftp_client = client.open_sftp()
        ftp_client.put(local_file_path, remote_file_path)
        ftp_client.close()

        client.close()
        print("文件上传成功")
    except Exception as e:
        print(f"文件上传失败: {str(e)}")

# 示例
upload_file_to_server('hostname', 22, 'username', 'password', '/path/to/local/file', '/path/to/remote/file')

四:从服务器下载文件

代码示例

python 复制代码
import paramiko

def download_file_from_server(hostname, port, username, password, remote_file_path, local_file_path):
    try:
        client = paramiko.SSHClient()
        client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        client.connect(hostname, port=port, username=username, password=password)

        ftp_client = client.open_sftp()
        ftp_client.get(remote_file_path, local_file_path)
        ftp_client.close()

        client.close()
        print("文件下载成功")
    except Exception as e:
        print(f"文件下载失败: {str(e)}")

# 示例
download_file_from_server('hostname', 22, 'username', 'password', '/path/to/remote/file', '/path/to/local/file')

五:在服务器上执行命令

python 复制代码
import paramiko

def execute_command_on_server(hostname, port, username, password, command):
    try:
        client = paramiko.SSHClient()
        client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        client.connect(hostname, port=port, username=username, password=password)

        stdin, stdout, stderr = client.exec_command(command)
        print("命令输出:")
        for line in stdout:
            print(line.strip())

        client.close()
    except Exception as e:
        print(f"执行命令失败: {str(e)}")

# 示例
execute_command_on_server('hostname', 22, 'username', 'password', 'ls')

往服务器传文件时报错:

python 复制代码
CryptographyDeprecationWarning: Blowfish has been deprecated and will be removed in a future release
  "class": algorithms.Blowfish,

解决方案:

报错文件里面 以下的代码注释掉即可

相关推荐
努力的家伙是不讨厌的1 小时前
解析json导出csv或者直接入库
开发语言·python·json
云空1 小时前
《Python 与 SQLite:强大的数据库组合》
数据库·python·sqlite
凤枭香2 小时前
Python OpenCV 傅里叶变换
开发语言·图像处理·python·opencv
测试杂货铺2 小时前
外包干了2年,快要废了。。
自动化测试·软件测试·python·功能测试·测试工具·面试·职场和发展
艾派森2 小时前
大数据分析案例-基于随机森林算法的智能手机价格预测模型
人工智能·python·随机森林·机器学习·数据挖掘
小码的头发丝、3 小时前
Django中ListView 和 DetailView类的区别
数据库·python·django
Chef_Chen3 小时前
从0开始机器学习--Day17--神经网络反向传播作业
python·神经网络·机器学习
千澜空4 小时前
celery在django项目中实现并发任务和定时任务
python·django·celery·定时任务·异步任务
斯凯利.瑞恩4 小时前
Python决策树、随机森林、朴素贝叶斯、KNN(K-最近邻居)分类分析银行拉新活动挖掘潜在贷款客户附数据代码
python·决策树·随机森林
yannan201903134 小时前
【算法】(Python)动态规划
python·算法·动态规划