摘要: 参考 https://blog.csdn.net/ByteBox/article/details/134752264 修改配置文件 /etc/dhcpcd.conf 修改以下配置,其余配置保存不变 本次修改的是无线网卡wlan0 interface wlan0 static ip_address=1 阅读全文
posted @ 2024-04-28 17:47 minseo 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 参考 https://blog.csdn.net/u013449046/article/details/106455041 这是 mysql 初始化时,使用临时密码,修改自定义密码时,由于自定义密码比较简单,就出现了不符合密码策略的问题。 密码策略问题异常信息: ERROR 1819 (HY000) 阅读全文
posted @ 2024-04-12 14:43 minseo 阅读(21) 评论(0) 推荐(0) 编辑
摘要: logstash需要设置开机启动 设置systemctl配置文件 填写需要启动的配置文件等信息即可 配置文件 # cat /usr/lib/systemd/system/logstash.service [Unit] Description=logstash [Service] Type=simpl 阅读全文
posted @ 2024-04-10 16:58 minseo 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04挂载glusterfs报错 未知的文件系统类型“glusterfs” 解决方法 安装glusterfs客户端 # apt install glusterfs-client 注意:和CentOS系统安装包名不同 CentOS安装包名为glusterfs-fuse 阅读全文
posted @ 2024-04-07 17:53 minseo 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 使用K8S部署的禅道18.8在页面提交问题时候出现无响应提示 浏览器卡死 no response 排查过程 查看禅道日志无异常 正常的页面访问日志 # kubectl logs -f zentao-84bcf9f466-tjzrd 删除Pod重启Pod查看日志 提示无法连接MySQL数据库 解决方法 阅读全文
posted @ 2024-03-29 16:15 minseo 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 参考: https://hub.docker.com/_/mongo 创建PVC 创建PVC用于数据持久化 # cat mongodb-pvc.yaml apiVersion: v1 kind: PersistentVolumeClaim metadata: name: mongodb-pvc sp 阅读全文
posted @ 2024-03-27 10:47 minseo 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 使用curl命令发送POST请求并带请求json 本次测试使用测试站点 # https://httpbin.org/ 使用Postman测试 使用curl命令测试 # # curl -X POST -H "accept: application/json" --data '{"test":"test 阅读全文
posted @ 2024-03-25 14:35 minseo 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/chuanzhang053/p/16355454.html 使用curl命令返回页面内容,在一些检测网页的需求中只需要返回页面状态码来判断页面是否正常 使用以下命令判断百度是否正常,返回状态码为200则代表正常 # curl -o /dev/n 阅读全文
posted @ 2024-03-25 14:21 minseo 阅读(72) 评论(0) 推荐(0) 编辑
摘要: pip下载模块超时 提示如下 HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Read timed out 解决办法 增加超时参数把超时时间设置长一点 --default-timeout=100 h 完整命令如下 注意 阅读全文
posted @ 2024-03-19 11:59 minseo 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/pitaiyang/p/17975041 报错信息 nginx-ingress-controller限制上传文件大小为1M如果上传文件大于1M则会在浏览器报以下错误 # Request Entity Too Large 解决方法 修改ingre 阅读全文
posted @ 2024-03-18 17:39 minseo 阅读(30) 评论(0) 推荐(0) 编辑