排序
Let’s Encrypt/Certbot移除/remove/revoke不需要的域名证书
1.首先确认你的证书不再需要,如果有必要,请执行下面的命令进行备份 cp /etc/letsencrypt/ /etc/letsencrypt.backup -r 2.撤销证书 进入certbot目录,执行如下命令: [root@rxblog certbot-0.2...
MyBatis Generator生成代码报错:Table configuration with catalog null
使用MyBatis Generator生成代码报错信息如下: [WARNING] Table configuration with catalog null, schema xe, and table SR_CLASS did not resolve to any tables 数据库是oracle,错误原因是...
Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法
Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法 错误信息: java.lang.ClassCastException: com.google.gson.internal.Li...
KVM架构VPS通过Cloudflare WARP添加额外IPv4/IPv6获得原生IP,隐藏真实IP,解锁Netflix和Google验证码
启用ws+tls,虽然能让模拟正常网络请求,但是还是可能会暴露我们的真实IP。而且有的VPS的IP访问比如Netflix网站、Google视为异常用户,启用Cloudflare WARP则可以解决这些问题。 2021最新基于ng...
ffmpeg视频合并Unsafe file name问题解决
使用ffmpeg进行多个视频合并过程中出现了“unsafe file name”错误,解决的办法是加个-safe 0 参数: ./ffmpeg.exe -f concat -safe 0 -i ./fileToMerge.txt -c copy -y ./out.mp4 上面的命令是...
Gson JsonReader使用setLenient方法设置宽容/非严格模式
方法原型 方法: public GsonBuilder setLenient() 方法说明: 默认情况下,Gson是严格的,只接受RFC 4627指定的JSON。此选项使解析器在接受的内容中更加自由。 使用 使用方法1: Gson gson = n...
Certbot命令行工具使用说明
certbot版本: v0.22.2 用法: ``` certbot [子命令] [选项] [-d 域名] [-d 域名] ``` Certbot工具用于获取和安装 HTTPS/TLS/SSL 证书。默认情况下,Certbot会尝试为本地网页服务器(如果不存在会...
CentOS使用rpm离线安装mariadb
环境: CentOS Linux release 7.6.1810 (Core) mariadb:10.4.7 安装过程中我是使用root用户操作的。 依赖 离线安装不容易啊,按照官方文档:Installing MariaDB With the rpm Tool 的意思,是需...
JS中数组(Array)、Json对象长度(length)获取方法
1.数组 var array = []; var length = array.length; 2.JSON对象 1)方法1: var pBzjtJson ={'SORT':1,'TITLE':'12324','RANK':1,'TYPE_TAG':'班子集体责任','SR_CLASS_ID':'a2bdfa5b5f684d5d9...
已解决:spring boot报错SizeLimitExceededException
错误 spring boot报错: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (71401393) exceeds the configured...