07 2022 档案
摘要:1、pymongo官网 https://pypi.org/project/pymongo/ https://api.mongodb.com/ 2、github https://github.com/mongodb/mongo-python-driver 3、文档 https://www.osgeo.
阅读全文
摘要:1、下载 https://www.dll-files.com/geos_c.dll.html 2、按照提示放到对应目录和注册即可 C:\Windows\System32
阅读全文
摘要:1、官网 https://prometheus.io/docs/introduction/overview/ https://grafana.com/docs/grafana/latest/ https://github.com/prometheus-community/windows_export
阅读全文
摘要:1、创建测试计划 2、创建线程组 3、创建JDBC连接 4、添加JDBC请求 6、添加数据库操作 7、添加结果报告 8、执行并查看结果 问题1、Cannot create PoolableConnectionFactory (The server time zone value '�й���ʱ��
阅读全文
摘要:1、原因,模拟用户并发插入数据库数据场景,评估系统吞吐量 2、jmeter官网 https://jmeter.apache.org/download_jmeter.cgi 3、用户手册 https://jmeter.apache.org/usermanual/index.html 4、启动jmete
阅读全文
摘要:1、问题现场 自动化测试中,封装接口,用到requests, 封装目录为http, 用于存放相关api 别人下载工程下来之后,运行报错 ModuleNotFoundError: No module named 'http.client' 2、处理方法 经过各种排查,发现确实是目录命名导致 参考链接:
阅读全文
摘要:1、官网 https://nuitka.net/ 2、github https://github.com/Nuitka/Nuitka 3、安装mingw64 https://winlibs.com/ 4、创建python项目 以一个tk小例子 from tkinter import * root =
阅读全文
摘要:1、官网 https://www.fit2cloud.com/metersphere/index.html 2、文档 https://metersphere.io/docs/ https://github.com/metersphere/metersphere 3、环境 windwos10 jdk
阅读全文
摘要:1、docker hub https://hub.docker.com/_/redis 2、创建redis 创建目录 mkidr $HOME/Tools/redis/confmkdir $HOME/Tools/redis/data docker run \ --restart=always \ --
阅读全文
摘要:1、docker hub https://hub.docker.com/r/bitnami/kafka https://hub.docker.com/_/zookeeper 2、安装zookeeper 创建目录 mkdir $HOME/zookeeper/data mkdir $HOME/zooke
阅读全文
摘要:1、命令帮助 -> % curl --help Usage: curl [options...] <url> Options: (H) means HTTP/HTTPS only, (F) means FTP only --anyauth Pick "any" authentication meth
阅读全文
摘要:1、 wget命令 -> % wget --help GNU Wget 1.17.1, a non-interactive network retriever. Usage: wget [OPTION]... [URL]... Mandatory arguments to long options
阅读全文
摘要:1、使用ffmpeg工具直接下载 官网下载 https://ffmpeg.org/download.html 安装就是直接安装即可 ffmpeg -i [http://xxxxxxx/play.ts] -c copy test.mp4 2、使用python库之ffmpy3 安装 pip instal
阅读全文
摘要:1、官网 https://docs.anaconda.com/anaconda/packages/oldpkglists/
阅读全文
摘要:问题1、安装 https://blog.csdn.net/lsqingfeng/article/details/121414870 问题2、win安装配置 https://www.jianshu.com/p/a287bcf65943 问题3、配置国内镜像 https://www.jianshu.co
阅读全文
摘要:1、官网 https://www.jenv.be/ 2、github https://github.com/jenv/jenv 3、安装方法 brew安装 brew install jenv 源码安装 git clone https://github.com/jenv/jenv.git ~/.jen
阅读全文
摘要:问题1、server is not ready yet https://blog.csdn.net/javaboyweng/article/details/109608063 问题2、使用python链接elasticsearch https://blog.csdn.net/vincent_duan
阅读全文
摘要:1、问题 想进入docker修改配置文件时,发现没有vi和vim命令 2、一键更换国内源 Debian系统 sed -i -E 's/(deb|security).debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list 3、处理方法 # 进入容器
阅读全文