会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
代码诠释的世界
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
3
4
5
6
7
8
9
10
11
···
52
下一页
2024年9月6日
【git】No user exists for uid 1000 fatal: 无法读取远程仓库。
摘要: 一、问题 今天拉取代码时,突然报错 二、处理过程 1、检查用户信息 $ id -u1000用户的id是对的 那是因为什么呢 2、重启终端 发现还是不行 3、重启电脑 发现还是不行 三、解决方案 最终重新生效环境变量 $ source ~/.bashrc 然后重新执行拉取更新 $ git fetchr
阅读全文
posted @ 2024-09-06 11:37 代码诠释的世界
阅读(305)
评论(0)
推荐(0)
2024年8月29日
【ubuntu】安装wireshark
摘要: 一、官网 https://www.wireshark.org/ 二、下载二进制安装 三、通过apt安装 sudo add-apt-repository ppa:wireshark-dev/stable sudo apt update sudo apt install -y wireshark 修改权
阅读全文
posted @ 2024-08-29 16:41 代码诠释的世界
阅读(2051)
评论(0)
推荐(0)
2024年8月12日
【grpcurl】使用grpcurl测试GRPC服务
摘要: 一、场景 由于我们需要访问GRPC服务的方法,便于我们进行测试,所以我们开启了grpc服务的反射机制 二、安装grpcurl https://github.com/fullstorydev/grpcurl https://github.com/fullstorydev/grpcurl/release
阅读全文
posted @ 2024-08-12 19:56 代码诠释的世界
阅读(967)
评论(0)
推荐(0)
2024年8月7日
【pymysql】 多线程报错问题:Packet sequence number wrong - got 1 expected 2
摘要: 一、场景 使用python脚本,批量复制mock数据用于测试 二、原脚本 from concurrent.futures import ThreadPoolExecutor from common.db.mysql_connect_client import MysqlConnectCom clie
阅读全文
posted @ 2024-08-07 11:21 代码诠释的世界
阅读(635)
评论(0)
推荐(0)
2024年7月26日
【protobuf】ImportError: cannot import name 'builder' from 'google.protobuf.internal'
摘要: 一、场景 搭建grpc服务端,启动时报错ImportError: cannot import name 'builder' from 'google.protobuf.internal' 二、解决办法 pip install --upgrade protobuf 本人的解决办法 参考链接: http
阅读全文
posted @ 2024-07-26 14:32 代码诠释的世界
阅读(1047)
评论(0)
推荐(0)
【jmeter】记一次服务带宽的流量模型测试
摘要: 一、场景 服务在进行压力测试的过程中,出现里流量带宽被打满的情况,导致接口请求耗时增加,所以需要评估并发上去之后,流量的走势,预估带宽的占用 二、场景设置 使用jmeter进行场景设计 每次递增10个业务, 业务执行300秒, 直到100个业务对象 三、执行压测 jmeter -n -t serve
阅读全文
posted @ 2024-07-26 11:08 代码诠释的世界
阅读(149)
评论(0)
推荐(0)
【nacos】记一次使用NacosExploitGUI扫描发现nacos安全漏洞
摘要: 一、场景 公司使用nacos作为配置和注册中心,使用的版本是1.4.0 二、下载NacosExploitGUI https://github.com/charonlight/NacosExploitGUI 下载release中的压缩包 三、运行NacosExploitGUI 1、运行 $ java
阅读全文
posted @ 2024-07-26 10:51 代码诠释的世界
阅读(1231)
评论(0)
推荐(0)
2024年7月22日
【ubuntu】解决移动硬盘挂载不上的问题
摘要: 一、问题 我的是sda2,反正报错一模一样 二、解决方法 1、安装ntfs-3g sudo apt install ntfs-3g -y 2、尝试挂载 sudo mount -t ntfs /dev/sda2 /media/tester/1T-WD 挂不上,报错基本也一样 3、重启电脑 发现也没用
阅读全文
posted @ 2024-07-22 17:52 代码诠释的世界
阅读(842)
评论(0)
推荐(0)
【ubuntu】卸载IDEA
摘要: 一、场景 不让用了 二、删除 sudo rm -rf ~/idea-IU-XXXX sudo rm -rf ~/.config/JetBrains/IntelliJIdea2024.1/ sudo rm -rf ~/.cache/JetBrains/IntelliJIdea2024.1/ sudo
阅读全文
posted @ 2024-07-22 17:03 代码诠释的世界
阅读(892)
评论(0)
推荐(0)
【matplotlib】生成各种图表
摘要: 一、场景 工作中,可能需要使用脚本分析各种数据,并生成图表 二、工具 matplotlib https://matplotlib.org/stable/install/index.html 三、安装 python -m pip install -U pip python -m pip install
阅读全文
posted @ 2024-07-22 16:38 代码诠释的世界
阅读(207)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
52
下一页
公告