相关文章
使用 Let's Encrypt 的免费HTTPS服务
安装 访问certbot.eff.org会看到下面页面 选择好你使用的软件及系统,这里我使用的软件是nginx及ubuntu16.04。 直接按照上面页面提供的命令完成安装。 使用 sudo certbot --nginx 使用以上命令,会进入安装配置的步骤,按照提问并选择你要设置的…
建站知识
2024/10/25 7:26:15
2023/07/05_leetcode每日一题_2600. K 件物品的最大和
题目
袋子中装有一些物品,每个物品上都标记着数字 1 、0 或 -1 。
给你四个非负整数 numOnes 、numZeros 、numNegOnes 和 k 。
袋子最初包含:
numOnes 件标记为 1 的物品。
numZeroes 件标记为 0 的物品。
numNegOnes 件标记为 -1 的物品。现计划从…
建站知识
2024/11/5 17:55:12
docker commit镜像以及数据卷技术
commit镜像
docker commit 提交容器成为一个新的副本# 命令和git类似
docker commit -m提交的描述信息 -a作者 容器id 目标镜像名:[tag]实战测试
# 启动一个默认的tomcat# 发现这个tomcat没有webapps应用,镜像原因,官方的镜像默认webapps下面是没有文件…
建站知识
2024/11/5 17:55:17
Module build failed: ReferenceError: Unknown plugin “component“ specified问题解决
报错信息
Module build failed: ReferenceError: Unknown plugin "component" specified in "安装了npm install babel-plugin-component -D解决
Module build failed: Error: Couldnt find preset "env" relative to directory安装npm install bab…
建站知识
2024/11/5 17:55:42
Java学习笔记之一:打包报错解决Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test
学Java打包时报错
...
Tests in error: testAddEmployee(com.xxxx.oa.organ.service.EmployeeServiceTest): Failed to load ApplicationContextTests run: 1, Failures: 0, Errors: 1, Skipped: 0[INFO] ------------------------------------------------------------------…
建站知识
2024/11/5 17:55:27
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test
报错:Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) on project demo01: There are test failures.
解决思路,新手在编译运行项目的时候经常会遇到这类型的报错,这是因为在编译过程中…
建站知识
2024/10/24 18:25:39
(windows) node-sass 安装报错
node-sass 安装报错 Command failed
error D:\xxx\xxx\node_modules\node-sass: Command failed.这是 node 版本和 node-sass 版本不对应导致的,查看 node-sass 对应 node 版本,可以安装 nvm 切换 node 版本。 参考:node-sass安装失败 error…
建站知识
2024/11/2 17:46:01
关于扩展IP地址空间的几个方案的探讨
摘 要:在IP地址紧缺的背景下,IPv6、NAPT、SuIP几种解决方案应运而生。分析、比较几种方案后,可知SuIP是最佳方案。 关键词:IPv6;NAPT;SuIP;IP地址空间扩展 The Investigation About Several So…
建站知识
2024/10/24 10:20:18