摘要: 1、http://xxx.com/metrics 2、http://xxx.com/debug/pprof/ 3、包冲突问题 cloud.google.com/go/compute/metadata: ambiguous import: found package cloud.google.com/ 阅读全文
posted @ 2023-12-29 15:43 会飞的斧头 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1、开发环境运行 vue npm run dev 这源自于 package.json 中的配置 "scripts": { "dev": "vue-cli-service serve", "build:prod": "vue-cli-service build", "build:stage": "vu 阅读全文
posted @ 2023-11-24 13:21 会飞的斧头 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 生成私钥、公钥 $ openssl OpenSSL> OpenSSL> OpenSSL> genrsa -out private_key.pem 2048 Generating RSA private key, 2048 bit long modulus (2 primes) ........... 阅读全文
posted @ 2023-09-22 19:54 会飞的斧头 阅读(491) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43930641/article/details/108181725 phpstorm中配置调试 阅读全文
posted @ 2023-09-13 16:08 会飞的斧头 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 下载 https://www.charlesproxy.com/latest-release/download.do 模拟器抓包教程 https://blog.csdn.net/qq_24298751/article/details/126859135 https://zhuanlan.zhihu. 阅读全文
posted @ 2023-08-24 17:22 会飞的斧头 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 一、这是一简单的 maven 子模块互相依赖 WorldApp 中调用 core模块中 Bag 类。 注意:打包 mvn package 时,要在含 modules 的父工程目录下进行。 <modules> <module>flying-world-server</module> <module>f 阅读全文
posted @ 2023-08-19 12:08 会飞的斧头 阅读(37) 评论(0) 推荐(0) 编辑
摘要: docker 下启动 kafka docker run -d \ --name zookeeper \ -p 2181:2181 \ -e ZOOKEEPER_CLIENT_PORT=2181 \ confluentinc/cp-zookeeper docker run -d \ --name ka 阅读全文
posted @ 2023-08-18 18:43 会飞的斧头 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 普通插入数据 http://xxxx:9200/user_list/_doc { "id":101, "analyzer": 1, "userId": "userId_001", "userMobile": "13544789621", "uploadVersion": "1.0.0", "frie 阅读全文
posted @ 2023-07-28 18:50 会飞的斧头 阅读(12) 评论(0) 推荐(0) 编辑
摘要: curl和ts的fetch函数默认不会使用Shadow代理。如果你希望在这些工具中通过Shadow代理进行连接,你需要手动配置代理设置。 一、对于curl,你可以使用`--proxy`选项指定代理服务器的地址和端口。以下是通过curl命令并使用Shadow代理访问`https://api.opena 阅读全文
posted @ 2023-07-03 17:39 会飞的斧头 阅读(311) 评论(0) 推荐(0) 编辑
摘要: yum安装nodejs v18.16.1 model: unknown, word count: 7, token estimate: 14 在yum仓库中,可能没有提供Node.js 18.16.1的特定版本。通常,yum仓库中提供的是最新稳定版本的软件包。 如果您需要安装特定版本的Node.js 阅读全文
posted @ 2023-07-03 13:02 会飞的斧头 阅读(263) 评论(0) 推荐(0) 编辑