ICode9

精准搜索请尝试: 精确搜索
  • idea与mysql连接,TestConnection显示Failed问题2022-01-06 17:05:38

    idea与mysql连接,TestConnection显示Failed问题 具体原因: 1.空格问题,多加空格,无论是在字符前后 2.时区问题(大部分都是这个问题,博主两次都是这个问题,捂脸) Host:默认就好User:用户名称,一般是rootpassword:数据库的密码Database:数据库名称,连接你创建的数据库URL:一般会有一个默认

  • Error: pngquant failed to build, make sure that libpng-dev is installed2022-01-04 20:36:44

    遇到了一个很难搞的报错 新同事遇到的,最开始的体现是这样的 看到这个报错是很懵的,进入到对应的依赖目录下,发现pngquant.exe不存在 认为是依赖装得有问题,各种卸载重装,重新配置淘宝镜像,遇到新报错 Error: pngquant failed to build, make sure that libpng-dev is installed

  • 记一次使用Flannel插件排错历程2022-01-03 21:33:25

    记一次使用Flannel插件排错历程 原来使用的是Calico插件,这不准备学习K8s的网络,就准备换成Flannel了,然后噩梦就开始了。。。 直接使用kubectl apply -f 安装了flannel插件,使用kubectl get pod -n kube-system查看pod的运行状态,一切都能美好,接着就准备直接运行个Pod看是否正常,结果等

  • Springboot 集成Swagger2 3.0.0 解决Failed to start bean 'documentationPluginsBootstrapper'2022-01-02 18:33:56

    添加依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 编写Swagger2配置类 @EnableWebMvc注解可以解决 Failed to start bean 'do

  • os和csv相关的问题随手记2021-12-31 17:36:35

    os模块获取当前路径 import os BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) print(BASE_DIR) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) print(BASE_DIR) BASE_DIR = os.path.abspath(os.path.join(os.p

  • maven仓库报错2021-12-30 21:02:46

     maven        deploy私服仓库报错   Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.8.2:deploy (default- deploy) on project dengkun-parent: Failed to deploy artifacts: Could not transfer artifact com.dengkun:dengkun-parent:pom:1.

  • Task :app:lintVitalRelease FAILED2021-12-30 15:36:18

    Task :app:lintVitalRelease FAILED 错误信息:Task :app:lintVitalRelease FAILED 问题原因:dl.google.com 无法连接 或真的是代码有问题检测过不去这个自己看日志 无法连接的解决办法: 1、修改hosts(推荐)通过在线查询ip网站,找到dl.google.com的ip 2、在gradle android里添加  an

  • The HTTP call equal to ‘curl -sSL http://localhost:10248/healthz‘ failed with error: Get “http://loc2021-12-29 09:02:01

    问题: 初始化K8S master时报错 The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp [::1]:10248: connect: connection refused. 问题分析: 之前我的Docker是用yum安装的,docker的cgrou

  • 前端控制台报错:Error: Request failed with status code 4052021-12-26 16:02:15

    解决办法 加 method:'post' 

  • Failed to open/create the internal network ‘HostInterfaceNetworking-VirtualBox Host-Only Ethernet2021-12-25 17:31:59

    win11上通过vagrant up启动虚拟机出现以下错误 Stderr: VBoxManage.exe: error: Failed to open/create the internal network ‘HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter’ (VERR_INTNET_FLT_IF_NOT_FOUND). VBoxManage.exe: error: Failed to attac

  • 使用WSL下的Ubuntu 20.04部署docker后,无法启动容器,提示Error response from daemon: OCI runtime create failed:2021-12-24 14:59:27

    使用WSL下的Ubuntu 20.04部署docker后,无法启动容器,提示错误: Error response from daemon: OCI runtime create failed: container_linux.go:367: starting container process caused: process_linux.go:352: getting the final child's pid from pipe caused: EOF: unknown E

  • Failed to start bean 'documentationPluginsBootstrapper' 启动报错2021-12-24 12:02:23

    这个报错是spring-boot 2.6以上版本和 springfox-swagger 3.0.0 的兼容性问题 解决方法: 降级 springboot 到 2.5.X 及以下版本 在 spring 配置文件中配置中: spring.mvc.pathmatch.matching-strategy=ant_path_matcher 不过springfox 这个 bug 持续了很久,团队并没有解决.因此建

  • 解决‘Failed to import pydot. You must `pip install pydot` and install graphviz‘2021-12-23 17:01:20

    运行绘图代码: tf.keras.utils.plot_model(resnet50) 报错: ('Failed to import pydot. You must pip install pydot and install graphviz (https://graphviz.gitlab.io/download/), ', ‘for pydotprint to work.’) 尝试: pip install pydot pip install graphviz 安装graph

  • Failed to parse multipart servlet request; nested exception is java.lang.IllegalStateException:2021-12-23 14:02:15

    Failed to parse multipart servlet request; nested exception is java.lang.IllegalStateException: The multi-part request contained parameter data (excluding uploaded files) that exceeded the limit for maxPostSize set on the associated connector server: t

  • git出现fatal: Authentication failed for 'http:xxxx.git/''错误的解决办法2021-12-22 21:05:19

    在git上clone的时候,输入用户名和密码第一遍输错以后,之后就无法再自动弹出输入用户名和密码的窗口了,出现错误如下: fatal: Authentication failed for 'http:xxxx.git/'' 经过一番百度以后找到了解决办法,只需要输入 git config --system --unset credential.helper 然后回车,再输入gi

  • Dependency failed for File System Check on /dev/vdb1 服务器配置升级2021-12-21 17:35:39

    问题描述: 杭州服务器升级配置中重启遇到以下问题 Dependency failed for File System Check on /dev/vdb1   原因: 由于服务器云盘已卸载,但未注释/etc/fatab中的开机自动挂载/dev/vdb1盘,服务器每次重启都会检查fatab文件自动挂载项,导致报以上错误。   解决方案: 1.官方已经提示在

  • 【python pywin32】import win32api ImportError: DLL load failed: 找不到指定的程序。2021-12-17 16:34:37

    启动jupiter 发生错误。 解决办法: 224、225新版本发布的有问题,回退到223版本即可 pip install pywin32==223

  • Failed to resolve loader: stylus-loader问题2021-12-17 11:00:13

    在项目运行中会出现如下图所示的问题,出现Failed to resolve loader: stylus-loade 问题原因,是因为在项目中使用了lang=“stylus”, 项目中并没有安装stylus-loade和stytus , 安装即可。执行代码如下: npm i stylus stylus-loader --save-dev 原文地址: http://yaoyaoman.cn/bl

  • 关于Jenkins 打包部署出现Failed to create parent directories for tracking file /usr/local/maven3.8/2021-12-17 09:04:53

    解决思路: 1、分析日志 在Jenkins构建命令中加上mvn -X开启日志debug调试 2、根据debug调试的内容找到关键信息Failed to create parent directories for tracking file /usr/local/maven3.8/ 3、由此可知是maven仓库的读写权限不够输入命令 chmod -R 777 你的maven仓库地址

  • 解决 vscode 安装 golang 环境出现 connection failed 的情况2021-12-16 10:34:13

    0x00 问题详情 当在 vscode 配置 golang 环境时,会出现如下报错 A connection attempt failed because the connected party did not properly respond after a peri 这个经过测试,不是网络问题,毕竟挂了梯子也没用。 0x01 解决方法 解决方法很简单,换一个国内的代理就行,执行命令 go

  • Error while Deploying HAP Failure[INSTALL_PARSE_FAILED_REQPERMISSIONS_ERROR] 问题解决2021-12-15 10:07:10

    开发鸿蒙的时候突然工程没法真机调试了,报错:Error while Deploying HAP Failure[INSTALL_PARSE_FAILED_REQPERMISSIONS_ERROR] 经过查阅资料是因为config.json里面的"usedScene": { “ability”: [ “default” ], “when”: “always” 这个usedScene里ability要么写default

  • Procedure execution failed 1449 异常2021-12-14 21:03:27

    一、现象:         运行存储过程出现: Procedure execution failed 1449 - The user specified as a definer ('XX'@'%') does not exist 二、解决方式:         将'XX'改成root,将%改成127.0.0.1 三、分析:        因为XX用户没有或者XX用户没有%这个权限导致的。想了

  • flutter配置fluwx安卓环境报错Execution failed for task ‘:fluwx:compileDebugKotlin‘2021-12-13 15:01:08

    安装flutter fluwx插件很麻烦如果报了这个错Execution failed for task ‘:fluwx:compileDebugKotlin‘说明版本低了要更新一下kt版本 更新的依据是根据fluwx官方git上的fluwx => example => android => build.gradle

  • SpringBoot集成swagger后出现: Failed to start bean ‘documentationPluginsBootstrapper‘的解决方法2021-12-12 19:33:34

    SpringBoot集成swagger后出现: Failed to start bean ‘documentationPluginsBootstrapper‘的编译错误: org.springframework.context.ApplicationContextException:Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerExce

  • 模拟器无法安装项目(Application Installation Failed)2021-12-10 23:03:30

    报错如下图 解决方法 1):File->Setting->Build,Execution,Deployment->InstantRun 2)取消勾选Enable Instant Run to hot swap code

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

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

ICode9版权所有