摘要:
也挺奇怪的,直接在 ubuntu 里使用 idea 是可以跑起来的。 一样使用 docker 部署, centos7.3里面能正常启动,但是,ubuntu22.04 里面就跑不起来了。 具体报错: RedisConnectionException: Unable to connect to 192. 阅读全文
摘要:
Maven打包报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</gr 阅读全文
摘要:
2. 微信支付 Apiv3 ,加载商户私钥,提示Illegal base64 character 2d,解決办法。 - 使用Jsapi Apiv3 预支付接口相同的 applicat_key.pem 和 merchantSerialNumber - 使用 <version>0.2.10</versi 阅读全文
摘要:
mirrorlist.centos.org no longer online. solution: https://serverfault.com/questions/1161816/mirrorlist-centos-org-no-longer-resolve 阅读全文
摘要:
registry-1.docker.io 是 Docker Hub 的底层注册表(Registry)地址,用于存储和管理 Docker 镜像。在 Docker 中,一个注册表(Registry)是存储 Docker 镜像的地方,而 registry-1.docker.io 是 Docker Hub 阅读全文
摘要:
解决办法:启动命令加上 -Dfile.encoding=UTF-8 nohup java -Dfile.encoding=UTF-8 -jar xxx.jar 阅读全文
摘要:
docker报错:Got permission denied while trying to connect to the Docker daemon socket at unix:///var/ru https://blog.csdn.net/zh515858237/article/details 阅读全文
摘要:
解决办法: 对于只需要Base64编码的简单场景,可以考虑使用Java 8及以上版本提供的内置`java.util.Base64`类,这是一个标准API,无需额外引入任何库: //import sun.misc.BASE64Encoder; // java8 import java.util.Bas 阅读全文
摘要:
https://blog.csdn.net/qq_34254642/article/details/104641591 阅读全文
摘要:
3. XShell 无法匹配的outgoing encryption算法 ,No matching outgoing encryption algorithm found 在链接的属性(SSH -> 安全性) 的加密算法列表中选择 aes256-ctr, mac加密列表中选择hmac-sha2-25 阅读全文
摘要:
centos7 添加新账户 #!/bin/bash # 新账户的用户名 username=$1 # 添加新账户 useradd $username # 为新账户设置密码,这里需要输入密码,也可以通过stdin来自动设置密码 #echo "$1" | passwd --stdin $username 阅读全文
摘要:
vue3 引入 element-ui 报错。 PS E:\ws06\test-new\20240620-syt\syt-01> npm i element-ui@2.3.5 -S npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve d 阅读全文
摘要:
背景: 在 bootstrap.yaml 配置 nacos。但是怎么样都注册不上, 然后发现是没有加载 bootstrap.yaml 导致的。 最初以为是 springcloud 版本问题,折腾了1个小时才发现是模块的父工程里面配置的插件 spring-boot-maven-plugin 导致的。 阅读全文
摘要:
将对象集合转为字段值的 list List<Integer> countList = videoVisitorVoList.stream().map(VideoVisitorCountVo::getUserCount).collect(Collectors.toList()); 阅读全文
摘要:
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> <resourc 阅读全文
摘要:
easyExcel & poi 比较 阅读全文
摘要:
#!/bin/bash MODULE=$1 ENV=$2 IS_PRINT_LOG=$3 PORT=1 case "$MODULE" in "blade-gateway") PORT=8000 ;; "blade-user") PORT=8017 ;; "blade-team") PORT=8016 阅读全文
摘要:
.bashrc 给文件夹添加颜色 # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # f 阅读全文
摘要:
[[ : not found 解决方法: https://www.cnblogs.com/w787815/p/17772384.html 阅读全文
摘要:
https://www.cnblogs.com/devhg/p/13969647.html 阅读全文
摘要:
遇到的问题: [2024-05-14T15:23:17,530][INFO ][logstash.runner ] Logstash shut down. [2024-05-14T15:23:17,534][FATAL][org.logstash.Logstash ] Logstash stoppe 阅读全文
摘要:
重启 restart.sh #!/bin/bash LOG=nohup.out PID=$(netstat -tpln|grep 5044 | cut -d 'N' -f2 | sed -s "s/\/java//g") #PID=$(jps | grep $MODULE | cut -f 1 -d 阅读全文
摘要:
下载地址 https://www.elastic.co/cn/downloads 阅读全文
摘要:
Centos同步网络时间 https://www.cnblogs.com/devhg/p/13969647.html 阅读全文
摘要:
git 免密推送代码到github。 参考:https://www.bilibili.com/video/BV1vy4y1s7k6?p=26&vd_source=ad97a93a8a42c9559b03a66114d94d18 关键动作: 然后: 阅读全文
摘要:
springmvc 在 tomcat-maven-plugin 中配置 contentPath 参考:https://blog.csdn.net/weixin_44454512/article/details/110202174 启动时:配置 tomcat7:run 阅读全文
摘要:
mysql 远程无法连接,解决办法: https://blog.csdn.net/Dontla/article/details/133213538 阅读全文
摘要:
npm 查看现有 webpack 版本命令: npm view webpack versions 阅读全文
摘要:
视屏地址:https://www.bilibili.com/video/BV1Zy4y1K7SH?p=14&spm_id_from=pageDriver&vd_source=ad97a93a8a42c9559b03a66114d94d18 vue2 学习笔记: 1. 对象里面写方法,不用写 func 阅读全文
摘要:
vue-element-admin中如何打断点 1、vue.config.js中加一行 devtool: ‘source-map’ 阅读全文
摘要:
感谢作者:https://www.cnblogs.com/lvbok/p/logback.html 解决方案 在配置文件中指定日志配置文件地址: logging: config: classpath:logback-spring.xml 阅读全文
摘要:
首先,感谢 http://www.manongjc.com/detail/42-hiwfjklnbpukjgd.html & https://huaweicloud.csdn.net/654a1218525bff6100e99afd.html 在jdk8 升级 jdk17,项目 docker 部署失 阅读全文
摘要:
1. 参考资料https://blog.csdn.net/weixin_33850015/article/details/88659213https://github.com/mengyunzhi/springBootSampleCode/tree/master/log-backhttps://se 阅读全文
摘要:
yt-dlp --format='bv*[height=720P]+ba' --proxy=socks5://127.0.0.1:8088/ https://www.youtube.com/watch?v=ZEjJpXTQvgo yt-dlp --help yt-dlp -F --list-form 阅读全文
摘要:
大数据 https://www.zhihu.com/question/299830109 阅读全文
摘要:
主要参考此blog: https://blog.csdn.net/rimke/article/details/133740041 命令: schtasks /create /SC daily /ST 16:02 /TN dailyBreakingNews /TR C:\Users\Administr 阅读全文
摘要:
chromedriver 版本:120.0.6099.***下载 https://googlechromelabs.github.io/chrome-for-testing/ 阅读全文