摘要:
github和gitlab同时存在的设置方式https://www.jianshu.com/p/756dc956f6931.先设置一个人gitlab的账户2.进入到cd .ssh3.ls 查看生产的公钥和密钥4.尾号以“.pub”结尾的为公钥5. config id_ed25519 id_ed255 阅读全文
摘要:
docker集成1.docker ps 查看在执行的所有服务2.docker ps - a 查看所有服务3.重启服务 docker restart 服务名称4. docker启动1.systemctl start docker 启动docker2.systemctl stop docker3.sys 阅读全文
摘要:
性能分析:1.top命令查看那个线程过高2.linux进程将死原因排查思路 https://www.cnblogs.com/migrantworkers/p/10179688.html 查看程序的进程号 ps -ef|grep ProgramName ps -ef|grep 25723 root 4 阅读全文
摘要:
8.python语法for key in keys: if key = one: dada_id = key[''] else break 此时的break表示跳出整个for循环,不在继续执行了当前循环,继续往下执行 for key in keys: if key = one: dada_id = 阅读全文
摘要:
linux 看cpu、内存、虚拟内存、磁盘查、 查看物理cpu个数 cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l 查看物理cpu内核个数 cat /proc/cpuinfo | grep "cpu cores" | uniq 阅读全文
摘要:
6.jmeter标准流程设置 计划 结果树 http信息头管理器 http请求默认值 用户定义的变量 检查http的状态 检查code200的状态 一般线程 http cookie管理器 需要获取全局的cookie信息 登陆线程 http cookie管理器,无需设置 登陆线程简单控制器 必须提取c 阅读全文
摘要:
证书加载 加载位置:选项,ssl管理器,请求时才会弹出输入密码的弹框 证书选择:一般是用的是p12的证书,这个需要找运维获取 证书区别:p12证书支持浏览器和jmeter,postman不支持 postman: 设置:crt file=xxxxx.cert.pem; key file = xxx.k 阅读全文
摘要:
jmeter1.mac本地2.启动 路径:/bin 命令: sh jmeter 阅读全文
摘要:
https响应的错误码1.405错误,需要把返回的response转成josn 阅读全文
摘要:
python 实现计数累赠的语法class baseUtil(): def __init__(self): self.count=1 self.username = "" self.url = "" def methold(): self.count = self.count+1 阅读全文
摘要:
使用记录1.mysql 添加表字段alter table `case` update column threshold varchar(64) not null default '不填写表示是空'修改表字段属性 阅读全文