2025年9月21日
摘要: 操作说明 命令示例 打包目录 tar -cvf archive.tar /path/to/dir 解包文件 tar -xvf archive.tar 打包并压缩 tar -czvf archive.tar.gz /path/to/dir 查看包内容 tar -tvf archive.tar.gz 解 阅读全文
posted @ 2025-09-21 21:21 小二jerry 阅读(9) 评论(0) 推荐(0)
  2025年6月27日
摘要: hadoop版本 阅读全文
posted @ 2025-06-27 15:42 小二jerry 阅读(7) 评论(0) 推荐(0)
摘要: curl -XGET 网址 发送数据 -d 添加数据 -H 添加数据类型 curl -XPOST 网址 -H 数据类型 -d '{"字段名称":"字段值"}' 更新数据 curl -XPUT 网址 -d '{"字段名称":"字段值"}' curl -k 跳过验证 curl -L 追踪重定向后的网址 阅读全文
posted @ 2025-06-27 15:28 小二jerry 阅读(15) 评论(0) 推荐(0)
  2025年6月24日
摘要: https://hub-stage.docker.com/ docker代理 Environment="HTTP_PROXY=http://10.0.0.1:7890" Environment="HTTPS_PROXY=http://10.0.0.1:7890" docker exec 容器名称 r 阅读全文
posted @ 2025-06-24 11:54 小二jerry 阅读(4) 评论(0) 推荐(0)
  2025年6月20日
摘要: PDF https://tools.pdf24.org/zh/split-pdf 工具导航 https://tuostudy.upnb.top/ 计算机工具 http://www.yishimei.cn/ 阅读全文
posted @ 2025-06-20 11:54 小二jerry 阅读(5) 评论(0) 推荐(0)
摘要: 后台服务啥的都正常,就是白屏,博客后台也可以打开登录上去,就是博客首页没法显示。 百度说是代码问题还在排查中! 查看日志nginx错误日志,php解析代码报错,且报错没有权限,授权后继续代码报错。 原因应该是主题伪代码引起的报错。 开启php的debug调试配置 ,但是没用,刷新不产生调试日志。 阅读全文
posted @ 2025-06-20 11:04 小二jerry 阅读(4) 评论(0) 推荐(0)
  2025年6月7日
摘要: 1.https://www.mysql.com/ 2.点击社区版 3.点击社区版 4.勾选对应的版本 一般选择双数版本且发布为1年以上的版本,比较稳定。 5.找到对应的安装文档。 阅读全文
posted @ 2025-06-07 17:55 小二jerry 阅读(11) 评论(0) 推荐(0)
  2025年5月26日
摘要: docker文档 docs.docker.com 下载安装 二进制安装 docker 修改启动命令为 tail -f /etc/hosts 将其阻塞住,然后进去容器查看 docker run --name es01 -dp 9200:9200 docker.elastic.co/elasticsea 阅读全文
posted @ 2025-05-26 21:00 小二jerry 阅读(5) 评论(0) 推荐(0)
摘要: 修改这个就行 阅读全文
posted @ 2025-05-26 20:32 小二jerry 阅读(124) 评论(0) 推荐(0)
  2025年5月20日
摘要: nginx 1.18 反向代理配置 server{ listen 80 ; listen [::]:80 default_server; root /var/www/html; index index.html index.htm index.nginx-debian.html; server_na 阅读全文
posted @ 2025-05-20 18:08 小二jerry 阅读(9) 评论(0) 推荐(0)