上一页 1 2 3 4 5 6 ··· 33 下一页
摘要: Check If Two String Arrays are Equivalent 思路一:把第一个数组入队列,然后遍历比较第二个数组 public boolean arrayStringsAreEqual(String[] word1, String[] word2) { Deque<Charac 阅读全文
posted @ 2023-12-06 08:47 iyiluo 阅读(8) 评论(0) 推荐(0)
摘要: jar -xvf .\xx.jar jar -cfM0 xx.jar ./ 阅读全文
posted @ 2023-11-21 08:51 iyiluo 阅读(97) 评论(0) 推荐(0)
摘要: 一般在 linux 下修改 dns 都是修改 /etc/resolv.conf 文件,但是打开后发现有句注释 Generated by NetworkManager 所以查了一下资料,可以使用 NetworkManager 来修改 dns # 查看网络链接 nmcli connection show 阅读全文
posted @ 2023-11-21 08:51 iyiluo 阅读(83) 评论(0) 推荐(0)
摘要: 在服务器部署了 k3s,运行也没什么问题。但是突然发现服务器原来部署在 80 端口下的 nginx 应用无法访问。 最近进行的操作只有部署了 k3s,所以把 k3s 停止运行后,发现 80 端口应用恢复正常,查了一下资料,k3s 会转发 80 端口的流量。 解决方案: 80 端口应用重新换一个新的端 阅读全文
posted @ 2023-11-13 09:45 iyiluo 阅读(367) 评论(0) 推荐(0)
摘要: 运行 docker-compose.yml 搭建数据库源,官方 mysql 样例数据源无法启动,改用其他 mysql 镜像 version: '2.1' services: postgres: image: debezium/example-postgres:1.1 ports: - "5432:5 阅读全文
posted @ 2023-11-09 14:06 iyiluo 阅读(199) 评论(0) 推荐(0)
摘要: pom.xml 文件。(javaagent 和 main 方法的 jar 可以分开成两个项目,单独打包 jar) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xml 阅读全文
posted @ 2023-11-08 10:14 iyiluo 阅读(92) 评论(0) 推荐(0)
摘要: 使用 docker-compose 快速部署应用 下面是 docker-compose.yml 文件 version: '3' services: renderer: image: ghcr.io/zenato/puppeteer-renderer:latest ports: - 3000:3000 阅读全文
posted @ 2023-11-06 15:08 iyiluo 阅读(80) 评论(0) 推荐(0)
摘要: jenkins 插件更新页面报错: Jenkins安装插件出现Signature verification failed in update site 'default' (show details) 在 docker-compose.yml 启动文件加上 hudson.model.Download 阅读全文
posted @ 2023-09-08 22:02 iyiluo 阅读(1064) 评论(0) 推荐(1)
摘要: 1. 线上环境使用的 jdk 版本为 1.8,对应的 java 启动命令 java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=50050 -jar xxxx.jar 2. 注意服务器需要开放对应的 50050 tcp 阅读全文
posted @ 2023-09-08 22:02 iyiluo 阅读(45) 评论(0) 推荐(0)
摘要: docker-compose 启动出现警告,关闭时出现错误 WARNING: Found orphan containers (xxxxxx) for this project. If you removed or renamed this service in your compose file, 阅读全文
posted @ 2023-09-08 22:01 iyiluo 阅读(1296) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 33 下一页