上一页 1 2 3 4 5 6 7 8 9 10 ··· 31 下一页
摘要: 1、判断虚拟机三种方式 1、dmesg|grep -i hypervisor [root@localhost ~]# dmesg|grep -i hypervisor [ 0.000000] Hypervisor detected: VMware 2、lscpu 查看Hypervisor vendo 阅读全文
posted @ 2022-08-16 10:47 苍茫宇宙 阅读(1890) 评论(0) 推荐(0) 编辑
摘要: #获取知乎的网站内容 import requests #数据请求模块 第三方模块 pip install requests import re #正则表达式 #网页head头 heads = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; 阅读全文
posted @ 2022-08-15 17:04 苍茫宇宙 阅读(166) 评论(0) 推荐(0) 编辑
摘要: [root@host-2 wj]# vi kill_tidb_zombie.sh #!/bin/bash source /etc/profile cat /dev/null > /tmp/sql_tmp_kill_zombie.sql kill_tidb_zom(){ #查询僵尸进程 mysql - 阅读全文
posted @ 2022-08-08 11:21 苍茫宇宙 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1、群启动webhook机器人:右上角设置--智能助手 添加机器人 其他机器人 2、获取webhook地址 3、调用方式不一样,则访问方式就不一样 方式一:加签 1、python加签名的调用方式 pip install requests import requests import json imp 阅读全文
posted @ 2022-07-27 16:52 苍茫宇宙 阅读(9970) 评论(0) 推荐(0) 编辑
摘要: 作用:可以在写监控脚本时,将结果值保存到mysql数据库 使用方法:sh 脚本 库名称.表名称 字段=值 字段=值 字段=值 1、脚本 [root@localhost tmp]# cat writ_mysql.sh #!/bin/bash #判断传入的参数 if [ $# -eq 0 ] then 阅读全文
posted @ 2022-07-12 11:07 苍茫宇宙 阅读(1604) 评论(0) 推荐(0) 编辑
摘要: 手机电脑文件共享搭建(http://iscute.cn/chfs) 1、下载wget http://iscute.cn/tar/chfs/2.0/chfs-linux-amd64-2.0.zip 2、启动./chfs --path="/tmp" --port=8080 3、指定用户密码启动 nohu 阅读全文
posted @ 2022-07-11 11:40 苍茫宇宙 阅读(761) 评论(0) 推荐(0) 编辑
摘要: 1、删除表空间报ora-22868问题,该表空间包含其他表空间的表的大字段。 思路:要么把字段迁移走,要么把表清理了。 2、处理方法一:将大字段迁移到其他表空间 select 'alter table '||owner||'.'||table_name||' move lob('||column_n 阅读全文
posted @ 2022-07-01 15:12 苍茫宇宙 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 1、linux安装aws curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install 查看配置 ls ~/.aws 2、 阅读全文
posted @ 2022-06-21 11:07 苍茫宇宙 阅读(1518) 评论(0) 推荐(0) 编辑
摘要: 1、下载docker-compose wget https://github.com/docker/compose/releases/download/v2.6.0/docker-compose-linux-x86_64 mv docker-compose-linux-x86_64 docker-c 阅读全文
posted @ 2022-06-16 14:44 苍茫宇宙 阅读(2086) 评论(0) 推荐(0) 编辑
摘要: 前提:k8s证书都是正常的没有过期,前段时间做过处理。 原因:替换了k8s证书后没有对kube-apiserver主键重启,还使用的是缓存信息,重启一下问题解决 systemctl restart kube-apiserver.service 问题:kubectl create -f apply-s 阅读全文
posted @ 2022-06-14 16:24 苍茫宇宙 阅读(1210) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 31 下一页