2024-06-19 16:21:12    59    0    0
  1. #安装docker
  2. #!/bin/sh
  3. #关闭SeLinux
  4. sed -i 's/enforcing/disabled/g' /etc/sysconfig/selinux
  5. setenforce 0
  6. #关闭防火墙
  7. systemctl stop firewalld
  8. systemctl disable firewalld
  9. #安装docker
  10. 1curl -fsSL https://get.docker.com/ | sh
  11. 2yum install -y yum-utils
  12. yum-config-manager \
  13. --add-repo \
  14. https://download.docker.com/linux/centos/docker-ce.repo
  15. yum install docker-ce docker-ce-cli containerd.io
  16. #添加阿里DNS
  17. touch /etc/docker/daemon.json
  18. vi /etc/docker/daemon.json
  19. {
  20. "dns": ["223.5.5.5","223.6.6.6"]
  21. }
  22. #开启docker服务并开启开机自启动
  23. systemctl start docker
  24. systemctl enable docker
  25. centos8 TencentOS
  26. https://blog.csdn.net/qq_31803267/article/details/122960656
  27. #创建名为mynet的网络
  28. docker network create mynet
  29. #安装docker-compose
  30. #(直接下载安装)
  31. curl -L https://get.daocloud.io/docker/compose/releases/download/v2.4.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
  32. chmod +x /usr/local/bin/docker-compose
  33. ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
  34. #(pip安装)
  35. 1、安装python-pip
  36. yum -y inst
2024-06-20 13:30:15    88    0    0
  1. #!/bin/sh
  2. #关闭SeLinux
  3. sed -i 's/enforcing/disabled/g' /etc/sysconfig/selinux
  4. setenforce 0
  5. #关闭防火墙
  6. systemctl stop firewalld
  7. systemctl disable firewalld
  8. #安装gcc gcc-c++等基础组件
  9. tar zxvf package.tar.gz
  10. cd package
  11. rpm -Uvh *.rpm --nodeps --force
  12. cd ../
  13. #安装apache
  14. #安装apr
  15. tar zxvf apr-1.7.0.tar.gz
  16. cd apr-1.7.0
  17. ./configure --prefix=/usr/local/apr
  18. make && make install
  19. cd ../
  20. #安装apr-util
  21. tar zxvf apr-util-1.6.1.tar.gz
  22. cd apr-util-1.6.1
  23. ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
  24. make && make install
  25. cd ../
  26. #安装pcre
  27. tar zxvf pcre-8.00.tar.gz
  28. cd pcre-8.00
  29. ./configure --prefix=/usr/local/pcre
  30. make && make install
  31. cd ../
  32. #安装httpd
  33. tar zxvf httpd-2.4.48.tar.gz
  34. cd httpd-2.4.48
  35. ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr -with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre
  36. make && make install
  37. cd ../
  38. #设置开机自启动
  39. cp -r /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd
  40. sed -i '1 i\#description:Start and stop the Apache HTTP Server' /etc
2024-06-20 10:46:05    83    0    0

python主程序和两个静态页面,实现ansible批量执行更新脚本

app.py

  1. import os
  2. import logging
  3. from flask import Flask, request, render_template, redirect, url_for, session, render_template_string
  4. import hashlib
  5. import subprocess
  6. import datetime
  7. from flask_sqlalchemy import SQLAlchemy
  8. app = Flask(__name__)
  9. app.config['SECRET_KEY'] = '自定义32位字符串'
  10. app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://root:passwd@10.0.0.1/python_db'
  11. app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
  12. db = SQLAlchemy(app)
  13. class User(db.Model):
  14. __tablename__ = 'users' # 指定表名为 'users'
  15. id = db.Column(db.Integer, primary_key=True)
  16. username = db.Column(db.String(100), unique=True, nullable=False)
  17. password = db.Column(db.String(255), nullable=False)
  18. class LoginLog(db.Model):
  19. __tablename__ = 'login_logs' # 指定表名为 'login_logs'
  20. id = db.Column(db.Integer, primary_key=True)
  21. username = db.Column(db.String(100), nullable=False)
  22. login_time = db.Column(db.DateTime, nullabl
2024-06-20 10:14:25    75    0    0
  1. import requests
  2. from fake_useragent import UserAgent
  3. import csv
  4. from datetime import datetime
  5. def convert_created_at(created_at):
  6. dt = datetime.strptime(created_at, '%a %b %d %H:%M:%S +0800 %Y')
  7. formatted_created_at = dt.strftime('%Y-%m-%d %H:%M:%S')
  8. return formatted_created_at
  9. def get_weibo_mid(weibo_id):
  10. url = f'https://weibo.com/ajax/statuses/show?id={weibo_id}'
  11. header = {
  12. 'user-agent': UserAgent().random
  13. }
  14. response = requests.get(url=url, headers=header)
  15. if response.status_code == 200:
  16. try:
  17. json_data = response.json()
  18. weibo_mid = json_data.get('mid')
  19. if weibo_mid:
  20. return weibo_mid
  21. else:
  22. print("未找到微博 MID。")
  23. except Exception as e:
  24. print(f"解析微博 MID 时发生异常:{e}")
  25. else:
  26. print(f"无法获取微博 MID。状态码:{response.status_code}")
  27. return None
  28. def get_weibo_comments(weibo_id, csv_filename):
  29. header = {
2024-06-20 10:10:18    39    0    0
  1. import openpyxl
  2. import os
  3. from copy import copy
  4. def get_cell(sheet, cell):
  5. # 如果是合并单元格,找到合并区域的起始单元格
  6. for merged_cell_range in sheet.merged_cells.ranges:
  7. if cell.coordinate in merged_cell_range:
  8. return sheet[merged_cell_range.coord.split(':')[0]]
  9. return cell
  10. def copy_cell_format(src_cell, dest_cell):
  11. if src_cell.has_style:
  12. dest_cell.font = copy(src_cell.font)
  13. dest_cell.border = copy(src_cell.border)
  14. dest_cell.fill = copy(src_cell.fill)
  15. dest_cell.number_format = src_cell.number_format
  16. dest_cell.protection = copy(src_cell.protection)
  17. dest_cell.alignment = copy(src_cell.alignment)
  18. def copy_row(sheet_src, sheet_dest, src_row_num, dest_row_num):
  19. src_row = sheet_src[src_row_num]
  20. for cell in src_row:
  21. dest_cell = sheet_dest.cell(row=dest_row_num, column=cell.column, value=cell.value)
  22. copy_cell_format(cell, dest_cell)
  23. # 复制行高
  24. sheet_dest.row_dimensi
2/3
Footer