摘要:
#内存监控 cat /proc/meminfo #内核线程、虚拟内存、磁盘、陷阱和 CPU 活动的统计信息 vmstat 1 2 | tail -n 1 #cpu监控 cat /proc/cpuinfo #负载均衡 [root@localhost ~]# cat /proc/loadavg 0.00 阅读全文
摘要:
1、保存网站内容到文件 知识点: 1、BeautifulSoup 的html5lib 以网页方式展示内容 2、网页打开设置字符集 response_new.encoding = 'UTF-8' 2、文件打开设置字符集 encoding="UTF-8" 3、python对字符串进行处理 ,取list最 阅读全文
摘要:
1、使用BeautifulSoup的 'html5lib' 能像网页工具一样渲染内容。 缺点:运行比较慢 2、安装包 pip install html5lib 3、直接获取网页的所有有效内容 import requests #数据请求模块 第三方模块 pip install requests fro 阅读全文
摘要:
#根据sql内容查找sql_id和sql的发起方式 select sql_id,module from v$sql where last_active_time > sysdate and sql_text like '%dba_free_space%'; #生成杀进程的sql select 'AL 阅读全文
摘要:
windows 打包python的脚本成exec 环境:python3.9 方式一:pyinstaller windows上打包成exe pip install pyinstaller 打包程序 pyinstaller test.py 结果在dist目录内 方式二:cxfreeze (感觉程序依赖多 阅读全文
摘要:
环境:python3.9 功能:网页版的腾讯企业邮箱删除邮件 安装依赖:pip install pyautogui import pyautogui import time for i in range(3): print(i) print('选择页面') time.sleep(3) pyautog 阅读全文
摘要:
1、oracle启动 [oracle@oracle1 orcl]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Tue Jul 11 14:18:33 2023 Copyright (c) 1982, 2013, Or 阅读全文
摘要:
linux 中执行任务计划有三种命令:at ,batch ,cron.其中,at,batch 是一次性执行,而crontab,则是周期性执行。 1、安装命令 使用下面的命令安装:yum install at -y 安装成功后使用 systemctl 命令启用 atd 服务:systemctl sta 阅读全文
摘要:
1、exclude排除参数使用 tar -Pczf /tmp/data.tar.gz /data --exclude *.jar --exclude *.war --exclude=/data/jenkins 2、注意项 a、排除目录需要使用绝对路径 b、如果在crontab中使用需要加上转义斜杠, 阅读全文
摘要:
haproxy开启日志 vi /etc/haproxy/haproxy.cfg #添加配置 global log 127.0.0.1 local2 info defaults mode http log global #开启日志功能 systemctl restart haproxy.service 阅读全文