ICode9

精准搜索请尝试: 精确搜索
  • npm报错error:0308010C:digital envelope routines::unsupported2022-07-28 13:02:52

    error:0308010C:digital envelope routines::unsupported 出现这个错误是因为 node.js V17版本中最近发布的OpenSSL3.0, 而OpenSSL3.0对允许算法和密钥大小增加了严格的限制,可能会对生态系统造成一些影响. 在node.js V17以前一些可以正常运行的的应用程序,但是在 V17 及以上版本

  • Maven deploy报错:Failed to deploy artifacts: Could not transfer artifact from/to snapshots 401 Unau2022-07-28 10:31:25

    Maven deploy报错: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:deploy (default-deploy) on project : Failed to deploy artifacts: Could not transfer artifact from/to snapshots 401 Unauthorized 错误原因: 401 Unauthorized,一般是身份验证凭

  • 解决MySQL5.7版本以后ONLY_FULL_GROUP_BY报错2022-07-28 09:32:47

    MySQL5.7后将sql_mode的ONLY_FULL_GROUP_BY模式默认设置为打开状态,会导致有的Group By语句报错,关闭ONLY_FULL_GROUP_BY即可。 解决方法有两种方式: 临时解决(只对当前查询生效): 可以通过navicat或cmd命令执行 select @@global.sql_mode 来查看当前数据库的sql_mode属性值, 查询

  • docker ping 域名报错: Name or service not known;ping IP地址报错:connect: Network is unreacha2022-07-28 00:32:22

    问题描述 做 jenkins 项目的构建测试; Dockerfile 中 使用 centos 镜像,拉取 redis 构建测试环境 Dockerfile 如下: FROM centos:7 RUN curl -o redis.tar.gz "http://download.redis.io/releases/redis-5.0.3.tar.gz" \ && tar -xvf redis.tar.gz jenkins 构建时报错如下: 排查

  • 报错:Unable to load authentication plugin ‘caching_sha2_password‘.2022-07-28 00:04:39

    原文地址:https://blog.csdn.net/ZHY_ERIC/article/details/123615953 这个是因为,mysql8之前的版本使用的密码加密规则是mysql_native_password,但是在mysql8则是caching_sha2_password,所以需要修改密码加密规则。 1、进去mysql 8.0 command line client 2、输入use mysql和select

  • (已解决)Adobe Creative Cloud 安装 Acrobat PDF 报错 DW071 DW0032022-07-27 15:01:43

    今天安装 Adobe Acrobat pdf 阅读器报错了,错误为 Exit Code: 7 Please see specific errors below for troubleshooting. For example, ERROR: DW003, DW071 ... -------------------------------------- Summary -------------------------------------- - 0 fatal error(s)

  • 用于解决$router.push跳转到一个相同的路由报错2022-07-27 14:03:30

    const originalPush = Router.prototype.push Router.prototype.push = function push (location) { return originalPush.call(this, location).catch(err => err) } 这就把代码贴在就可以了

  • 1、error LNK2019: 无法解析的外部符号"struct ********"2022-07-26 20:35:14

    一、C++ 错误类型 :error LNK2019 无法解析的外部符号 **注:本人用的编译器版本:VS2015 C++中报 error LNK2019、LNK2001、......等类型的错误,对刚接触C++的同学来说是一件非常令人头疼的事情,因为造成此类问题的原因非常多,这里只讲本人报错的一种原因。 二、报错截图 三、报错原因

  • MySQL-配置参数时 报错:remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu......2022-07-26 18:34:48

     报错:remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu......    原因: 1、第一次配置参数时,不完整,出现错误!,(报错也会产生CMakeCache文件) 2、第二次完整的配置输入,报错 原因是前产生CMakeCache文件   解决:如提示删除CMakeCache文件,再重新构建 [root@controller mysql-

  • 解决Laravel报错No application encryption key has been specified的问题2022-07-26 18:33:03

    可能有些小伙伴从git上拉下来的项目在本地运行时会报No application encryption key has been specified的错,如图:       这是因为.env文件中没有设置程序加密密钥 解决这个问题也很简单,只需要在终端执行 php artisan key:generate       执行完成后,在.env文件中就会多出

  • U8 服务调用失败 数据库没有提供的字段(clabel)! 或者提供该字段的值格式不正确!2022-07-26 13:35:02

    U8通过Open API添加存货档案,报错: "errcode":"20005","errmsg":"U8 服务调用失败:key='0101010110';数据库没有提供的字段(clabel)! 或者提供该字段的值格式不正确!;"   报错原因:生产企业(clabel)字段的长度超过了限制或者有特殊字符串。  

  • MongoDB Creteria查询2022-07-25 21:01:01

    Due to limitations of the org.bson.Document, you can't add a second 'createTime' expression specified as 'createTime : Document{{$lte=2024-02-03T19:00}}'. Criteria already contains 'createTime : Document{{$gte=2022-06-15T12:2

  • 报错“Internal error occurred: failed calling webhook "validate.nginx.ingress.kubernetes.io":2022-07-25 18:32:59

      报错:          解决方案: 输入这条命令 [root@k8s-master01 ingress]# kubectl delete -A ValidatingWebhookConfiguration ingress-nginx-admissionvalidatingwebhookconfiguration.admissionregistration.k8s.io "ingress-nginx-admission" deleted[root@k8s-master01 i

  • React报错Warning: Can't perform a React state update on an unmounted component.2022-07-25 15:37:03

    在React开发中,这样的报错会经常遇到:Warning: Can't perform a React state update on an unmounted component.  原因就是报错中所说:无法对已卸载的组件执行react状态更新。 假设现在我们正在A页面调接口请求数据,请求成功后setState()更新数据,这是没有问题的。 但是如果A页面在

  • vue+ts使用$refs属性报错Property 'focus' does not exist on type 'Vue | Element | (Vue | Elem2022-07-25 09:02:49

    问题 项目中直接使用 this.$refs.searchInput.focus() 会报以下错误 Property 'focus' does not exist on type 'Vue | Element | (Vue | Element)[]' 原因 ts中类型不明确引起的 解决 先定义searchInput的类型,再进行后续操作 let SI:any=this.$refs.searchInput SI.focus()

  • 经历的错误:2022-07-25 01:00:57

    之前一直被内存释放的问题搞得很难受,也是基础知识太不好得原因。今天正常的new和delete,然后运行的时候报错了。     就去看了看输出框里的信息。里面有句话引起了注意,就是那句wrote to memory after end of heap buffer!!!!:   其实就是开得空间大小不够它用得,应该去检查检查

  • 在 Windows msys2 下编译 scryer-prolog2022-07-25 00:31:53

    by chesium 2022/7/24 深夜 参考:https://github.com/mthom/scryer-prolog/blob/master/README.md 采用 msys2 环境编译 On Windows, Scryer Prolog is easier to build inside a msys2 environment as some crates may require native C compilation. However, the resulting bin

  • 单实例下实例监听日志报错“WARNING: Subscription for node down event still pending”2022-07-24 22:34:54

    单实例下实例监听日志[oracle@dbserver ~]$ more /u01/app/oracle/diag/tnslsnr/dbserver/listener/trace/listener.logWARNING: Subscription for node down event still pending20-JUL-2022 21:50:17 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=dbserver)(USER=oracle))(COMMAND=sta

  • brand-demo运行报错2022-07-24 20:32:18

    运行报错 HTTP Status 500 - /brand.jsp (line: 2, column: 62) Unable to read TLD "META-INF/c.tld" from JAR file "file:/D:/maven_repository/taglibs/standard/1.1.2/standard-1.1.2.jar": org.apache.jasper.JasperException: Failed to load or insta

  • SpringBoot项目访问网页空白页报错:Whitelabel Error PageThis application has no explicit mapping for /error2022-07-24 16:04:14

    刚开始搭建Spring Boot 微服务,页面报 Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this as a fallback. Sat Feb 29 16:42:04 CST 2020There was an unexpected error (type=Not Found, status=404).No message available  

  • uniapp npm run build - 报错问题汇总 (已解决)2022-07-24 12:05:08

    问题描述   not fund 'webpack/lib/RulesSet' 解决方式:    ① 版本问题: 使用 vue/cli @4.5.15 , 只需更换版本   ②创建问题: 使用的是其他版本的vue/cli创建项目后,再更换的vue/cli 版本, 只需重新创建uniapp 项目即可

  • LINUX下基于NVIDIA HPC SDK 的 VASP6.3.x编译安装报错整理2022-07-23 20:31:56

    关于gcc 用旧版本安装NVIDIA HPC SDK再编译会报错: "/opt/rh/devtoolset-8/root/usr/include/c++/8/bits/move.h", line 48: error: identifier "__builtin_addressof" is undefined 解决办法: 升级gcc 重新安装NVIDIA HPC SDK。先前安装的可以删除(rm -rf 文件夹)。安

  • .net 6 ef code first迁移报错解决,"Unable to create an object of type 'MyDbContext'. For the2022-07-23 20:31:28

    数据访问层添加nuget包: Microsoft.EntityFrameworkCore Npgsql.EntityFrameworkCore.PostgreSQL Microsoft.EntityFrameworkCore.Tools   使用dotnet ef命令迁移报错,就很纳闷,"Unable to create an object of type 'MyDbContext'. For the different patterns supported at desig

  • 【报错】Unable to load authentication plugin 'caching_sha2_password'.2022-07-23 16:31:52

    1.原因 mysql 8.0版本之前和之后的加密规则不同 2.解决 打开命令行 登录mysql 这里abc123为密码 #使用mysql数据库 USE mysql; #修改'root'@'localhost'用户的密码规则和密码 ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'abc123'; #刷新权限 F

  • 搭建mysql主从复制(报错:Last_Error: Error 'Unknown database)2022-07-23 16:06:05

    一、准备挂载文件 为了将配置文件在宿主机做挂载,先运行测试镜像拷贝配置文件 1、拉取镜像 docker pull mysql:8.0.26 2、创建测试容器mysql-demo docker run -it -p 3300:3306 \ --name mysql-demo \ -e MYSQL_ROOT_PASSWORD=123456 \ -d mysql:8.0.26 运行时改成一排执行: do

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有