but

Docker|--E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation

错误 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them ......
gnupg installed operation required Docker

Mac故障排查系列:redis删除key报错MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk.

背景:Mac下使用Another Redis Desktop Manager客户端,删除key,遇到报错:MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. ......
configured currently snapshots to 故障

解决:sass-loader@6.0.6 requires a peer of node-sass@^4.0.0 but none is installed. You must install peer dependencies yourself.

参考:https://blog.csdn.net/hancoder/article/details/113821646 去https://github.com/sass/npnode-sass 或者 https://github.com/sass/node-sass/releases 都可以看到no ......
sass peer dependencies sass-loader installed

you-said-yes-but-you-lied-parabola

关于抛物线版本的《口是心非》 Created: 2023-08-19T19:10+08:00 Published: 2023-09-19T14:19+08:00 Categories: Music 目录信我会疯狂(It drive me crazy)当我的感觉被你了解(When you know m ......

Spring Boot - Parameter 0 of constructor in com.example.iocdi.controller.UserController required a single bean, but 2 were found

问题描述 如上图所示,在加入了 @MapperScan 注解之后就出现了这个问题。 file:[src/java/config/MybatisConfig.java] @Configuration @MapperScan("com.example.iocdi") public class Mybat ......

but Android SDK not found at this location.

ENV PATH里设置好, SDK MANAGER路径要保持一致。 这个是常规操作。 还有个隐藏操作: SDK MANGER TOOLS里, 点取消 hide obse.... 然后安装 Android SDK tools 添加path: sdk 里的 D:\android_sdk\tools D: ......
location Android found this but

redis连接错误,报错信息为:ERR Client sent AUTH, but no password is set

作者这里启动项目时出现报错,报错信息为:ERR Client sent AUTH, but no password is set,连接不上的原因是因为在redis的配置里面先设置好了 123456 这个密码,然后根据报错原因:ERR Client sent AUTH, but no password ......
password 错误 Client redis 信息

python selenium报错ValueError: Timeout value connect was <...>, but it must be an int, float or None.

最近学习爬虫,安装selenium,很简单地执行代码,但是一直报错。 ``` import time import openpyxl from selenium import webdriver from selenium.webdriver.common.keys import Keys from ......
ValueError selenium Timeout connect python

Docker|--E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation

### 错误 ```bash apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but ......
gnupg installed operation required Docker

UE4.27, Packaging failed, "is found in memory and is an export but does not have all load flags"

打包时发生如下错误 "is found in memory and is an export but does not have all load flags" 通过查阅论坛,问题原因出在,某类的构造函数里包含xxx->SetChildActorClass(ActualOne) 整理到的解决办法并未 ......
quot Packaging failed export memory

The database operation was expected to affect 1 row(s), but actually affected 0 row(s); 解决乐观并发

# [The database operation was expected to affect 1 row(s), but actually affected 0 row(s); 解决乐观并发](https://www.raokun.top/archives/thedatabaseoperatio ......
operation row database actually affected

elasticsearch from + size must be less than or equal to: [10000] but was [100000]

说明:当分页查询时,默认最大总数是10000(from+size<=10000),当我现在业务需要查询最大100000条时,就报错了。 方案1:可以为某个es放开到指定的返回总数,也可以对整个es的索引做设置。但这样对内存消耗很大, 可能导致内存溢出,elasticsearch重启又会恢复默认100 ......
elasticsearch 100000 10000 equal from

spring注入bean错误-Bean named 'abc' is expected to be of type 'AAA' but was actually of type 'BBB'

@Resource注解有两个重要的属性:name和type。在一个使用@Resource来注入bean的声明语句中,@Resource优先是按name来解析bean的 ......
39 type actually expected 错误

vue3 'alex' is defined but never used

解决方法 在package.json中的rules下加入 "no-unused-vars":"off" 即可 ......
defined never vue3 39 alex

[Vue warn]: Property or method "todoName" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option,

## 错误原因 > 先上报错截图 ![](https://img2023.cnblogs.com/blog/2942345/202308/2942345-20230806143312604-1751762480.png) 报错翻译 : ![](https://img2023.cnblogs.com/ ......
quot referenced the Property instance

Angular:error TS2717: Subsequent property declarations must have the same type. Property 'contentRect' mu st be of type 'DOMRectReadOnly', but here has type 'DOMRectReadOnly'.

# 解决方案 在`tsconfig.json`的`compilerOptions`选项中添加如下内容`"skipLibCheck": true`。 如下图所示 ![image](https://img2023.cnblogs.com/blog/1795938/202307/1795938-20230 ......

【报错修复】HRESULT: 0x80070057 The library hostfxr.dll was found, but loading it from C:\Program Files\dotnet\host\fxr\5.0.17\hostfxr.dll failed

``` 我写了一个winform程序, 拷贝到win7系统上,提示需要下载.net 给的链接是 https://aka.ms/dotnet-core-applaunch?missing_runtime=true&arch=x64&rid=win7-x64&apphost_version=5.0.3& ......
hostfxr 0x80070057 x80070057 dll 80070057

[Selenium]TypeError:__init__()takes 2 positional arguments but 3 were given解决方案

异常描述:takes 2 positional arguments but 3 were given 原因:init()方法只取2个参数,但实际给出了3个参数 分析: 最初执行的代码是这样写: self.__wait.until(ec.presence_of_element_located(By.X ......

关于TypeScript中提示xxx is declared but its value is never read的解决方法

首先,提示很明显,是定义了变量,但是却没有使用。解决方案有如下两种: 一: 需要确定变量是否真的没有使用到,如果没有使用直接删除即可。 二: 对于方法中的入参,是没法随便删除的。这时候我们可以利用TypeScript4.2中的新特性,将变量名用下划线开头,表示占位变量。 更具体的详情可以参考:fea ......
TypeScript declared 方法 value never

Schema-validation: wrong column type encountered in column [NAME] in table [BUS]; found [nvarchar2 (Types#NVARCHAR)], but expecting [varchar2(255 char) (Types#VARCHAR)]

属性的类型出错 NVARCHAR 和 VARCHAR 不同 @Column(name = "NAME", columnDefinition = "nvarchar2(50)") private String name; ......

StatefulSet部署postgresql报错initdb: error: directory "/var/lib/postgresql/data" exists but is not empty & Back-off restarting failed container

容器状态一直重启 ``` [root@k8s-master01 sonarqube]# kubectl get pod -n ops NAME READY STATUS RESTARTS AGE gitlab-0 1/1 Running 0 170m pgsql-0 0/1 CrashLoopBac ......

error 'fun' is assigned a value but never used @typesc

在vue3+ts 的项目中在进行eslint 配置之后 在main.ts 进行测试 出现了 error 'fun' is assigned a value but never used @typesc 错误’fun’被分配了一个值,但从未使用过没有未使用的变量 在 package.json 的 ru ......
assigned typesc error value never

升级EF7连接SQL server出错SqlException: A connection was successfully established with the server, but then an error occurred during the login process. (provider: SSL Provider, error: 0 - 证书链是由不受信任的颁发机构颁发的。)

今天把项目里的Microsoft.EntityFrameworkCore.SqlServer和Microsoft.EntityFrameworkCore.Tools从6.0.6升级到了最新的7.0.9。一运行程序出错了。 ![img](https://img2023.cnblogs.com/blog ......

anolis 8.8 (CentOS 8) yum update error: Problem 1: package mod_ssl-1:2.4.37-56.0.1.module+an8.8.0+11061+87142f8c.6.x86_64 requires , but none of the providers can be installed

#yum update error message: Problem 1: package mod_ssl-1:2.4.37-56.0.1.module+an8.8.0+11061+87142f8c.6.x86_64 requires httpd = 2.4.37-56.0.1.module+an8 ......
installed providers requires Problem package

VMware:Package vim is not available, but is referred to by another package.

出错语句 在ubuntu中输入sudo apt-get install vim安装vim时出现如下错误语句 Reading package lists... Done Building dependency tree Reading state information... Done Package ......
available referred Package another package

Python报错 | RuntimeError: expected scalar type Long but found Float

**报错信息** 在执行nlp自定义模型的训练函数的时候,报如下错误: ```python RuntimeError: expected scalar type Float but found Long ``` **错误原因** ```python 错误信息指出了问题所在:模型期望的数据类型是 fl ......
RuntimeError expected Python scalar Float

Python报错 | TypeError: descriptor 'date' requires a 'datetime.datetime' object but received a 'int'

**报错信息** 使用python创建一个datetime.data类的时候,报如下错误: ```python TypeError: descriptor 'date' requires a 'datetime.datetime' object but received a 'int' ``` ** ......
39 datetime descriptor TypeError requires

Table flags are 0 in the data dictionary but the flags in file ./ibdata1 are 0x4800!

# 1、问题截图 cat /var/log/mysql/error.log ``` sql 2019-01-28T09:49:57.076019Z 0 [ERROR] [FATAL] InnoDB: Table flags are 0 in the data dictionary but the f ......
flags dictionary are the ibdata1

redis集群报错:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.

之前在x86架构的服务器部署redis集群,未遇到题中问题;然而在ARM架构的服务器部署redis集群,第一次遇到如此问题。虽然问题已经解决,但不清楚问题的具体原因,在此做个记录。 性能测试过程中,通过pinpoint捕捉到如下报错: MISCONF Redis is configured to s ......

Vue报错之 Property or method "XXX" is not defined on the instance but referenced during render

原因1:真的没定义, 原因2:定义了,但是需要检查大小写是否一致 ......
quot referenced Property instance defined