ICode9

精准搜索请尝试: 精确搜索
  • 远程连接mysql8,报错10061 解决办法2022-10-16 16:14:38

    mysql 8.0的1,检查服务器mysql 服务是否启动 100612,mysql必须设置密码,不然报错10061use mysql; update user set authentication_string=“” where user=“root”; flush privileges; ALTER USER ‘root’@’%’ IDENTIFIED WITH mysql_

  • @OneToOne 匹配不到时2022-09-17 00:32:17

    @OneToOne @JoinColumn(name = "message_fileinfo_id",referencedColumnName = "id",insertable = false,updatable = false) @NotFound(action = NotFoundAction.IGNORE) @OneToOne匹配时,若message_fileinfo_id匹配不到id,则会报错,此时加上@NotFound(action = NotFoun

  • angular设置网络请求超时时间2022-09-16 21:32:39

    angular5之后使用pipe this.http.get('url') .pipe( timeout(1000), catchError(e => { return of(null); }) ).toPromise().then( res => { //成功 }).catch(e => { //报错 );

  • 执行migrate报错:django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initi2022-09-16 20:32:19

    报错 django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency blog. 0001_initial on database 'default'. 报错原因 在数据库中已经有了django相关的依赖表 解决 ps: 慎用该方法,我这里是刚新建数据库

  • 部署流水线更新composer 报错2022-09-16 20:01:50

    composer update 时候报错 Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires PHP extension ext-zip * but it is missing from your system. Install or enable PHP's zip extension. Problem 2 - ph

  • 【JAVA基础】报错解决2022-09-16 18:31:51

    报错解决 Failed to configure a DataSource: 'url' attribute is not specified and no embedd https://changemax.blog.csdn.net/article/details/88191732?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2~default~CTRLIST~Rate-

  • 报错:JCE cannot authenticate the provider BC2022-09-16 14:31:47

    1.报错 用公司的平台加载授权文件的时候报:JCE cannot authenticate the provider BC错误. 2.解决: 1. 找到 java.security 在jvm安装地方 /path_to_your_jvm/jre/lib/security 2. 添加 security.provider.9=org.bouncycastle.jce.provider.BouncyCastleProvider例如: security.p

  • wordpress高级教程:add_action动作及add_filter过滤器、使用 wp_footer()是报错Invalid argument supplied解决2022-09-16 11:01:43

    一、add_action动作 1、运行dz动作,把所有挂载到这个动作的函数都执行一次   <?   //定义sh 说话函数   function sh(){   echo '说话<br/>';   }       //将sh 说话函数 挂载到 dz 动作上   add_action('dz','sh');    

  • 一篇文章搞定nginx安装及使用2022-09-15 15:35:18

    1、nginx安装直接官网下载稳定版本,解压到要安装的目录即可 官网链接:https://nginx.org/en/download.html   mac(Linux): 上传到服务器,解压文件即可,tar -zxvf nginx-1.22.0.tar.gz   2、解压到要安装的目录下,非中文目录   3、启动nginx windows系统打开cmd,切换到nginx.exe所在的

  • vue3+element-plus 报错:Uncaught (in promise) TypeError: Cannot read properties of null (reading '2022-09-15 14:00:50

    报错内容: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Uncaught (in promise) TypeError: Cannot read properties of null (reading 'insertBefore') 解决方法: <template #default="scope"> {{scop

  • Docker报错篇——实际场景下的解决方案2022-09-15 12:02:09

    容器相关报错 场景一:我在本地修改了后端代码,替换到远程服务器docker代码(原先已映射宿主和容器目录)后,重启了docker容器(docker restart flask_app_server)。 报错情况:docker重启容器后,没有启动成功,查看日志(docker logs flask_app_server -f)发现启动时报错了(配置文件中的数据库参数

  • 项目启动报错:If you want an embedded database (H2, HSQL or Derby), please put it on the classpath2022-09-15 12:00:39

    Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class Action: Consider the following: If you want an embedded

  • mysql登录报错unknown variable 'basedir=D:/mysql-8.0.30-winx64'2022-09-15 01:04:23

      本地安装mysql后登录报错,输入命令mysql -u root -p -P3306 报如下错误:     解决办法:在my.ini文件中,把原来[mysql] 都改成[mysqld]即可     [mysqld]# 设置MySQL客户端默认字符集default-character-set=utf8 [mysqld]#设置MySQL端口号port=3306#skip-grant-tables#设置MyS

  • 解决写入MySQL报错超出max_allowed_packet的异常2022-09-15 00:01:43

    问题描述  max_allowed_packet是指mysql服务器端和客户端在一次传送数据包的过程当中最大允许的数据包大小。 问题分析 大数据的插入和更新会被max_allowed_packet 参数限制掉,从而导致数据库的数据插入或者更新失败。 1.将本地数据库迁移到远程数据库时运行sql错误。错误信息是ma

  • microsoft excel不能访问文件解决方法2022-09-14 22:04:16

    遇到该问题是是C# 生成execl文件 实际文件已经存在但提示报错。   可能原因有以下几个:文件名称或路径不存在。文件正被其他程序使用。您要保存的工作薄与当前打开的工作薄同名。出现这个问题是由于当前账户对于被编辑的EXCEL文件所在的目录没有足够权限导致的,只需添加权限即可解

  • pandas 转化DataFrame后输出报错 AttributeError: 'NoneType' object has no attribute 'total_sec2022-09-14 21:33:54

    pandas 转化 数据为DataFrame后,DataFrame不能够print 否则会报错AttributeError: 'NoneType' object has no attribute 'total_seconds' #data的数据结构大致为[{...,'datetime':datetime.datetime(2022, 7, 4, 13, 55, 0, 500000, tzinfo=zoneinfo.ZoneInfo(key=�

  • 记录一次Oracle导入数据库失败的解决办法,最终报错:UDI-04045、ORA-04045、ORA-017752022-09-14 21:03:45

    费了很大的工夫,终于解决了。做个记录。   ********************************************************************************创建完成用户及表空间后,导入数据库,出现如下问题:******************************************************************************** [oracle@ufdb1

  • ASP.NET Core解析DataTable报错System.Text.Json.JsonException: A possible object cycle was detected which2022-09-14 13:00:40

    一、错误信息说明当运行ASP.NET Core中的Web Api解析DataTable类型时,出现错误: System.Text.Json.JsonException: A possible object cycle was detected which is not supported. This can either be due to a cycle or if the object depth is larger than the maximum allowed

  • git 查看分支2022-09-14 11:32:01

      切换分支    报错没有该分支。不一定是没有 可能是没有更新资源 执行 git fetch 再次切换分支,则成功。     如果git fetch都没有分支,则需要查看   查看远端是否存在分支 git ls-remote --heads git地址 sprint20220915分支名   结果  

  • navicat16连接Oracle报错oracle library is not loaded2022-09-14 10:30:33

    navicat版本:16.1.2 Oracle版本:11.2.0.4 可用instantclien版本:instantclient-basic-windows.x64-21.6.0.0.0dbru   navicat安装了最新的16版本,支持连接mysql和oracle,但是在连接Oracle时,老是无法连接,报错oracle library is not loaded,使用navicat自带的instantclient也不行,但是电脑

  • npm i 报错:ERESOLVE2022-09-14 10:04:17

    报错信息: npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve 解决方法: npm install xxxx --legacy-peer-deps 原理: npm install xxxx --legacy-peer-deps 命令用于绕过peerDependency里依赖的自动安装;它告诉npm忽略项目中引入的各个依赖模块之间依赖相同但版本不

  • vue对象重复报错2022-09-14 02:00:35

    检测到重复键:“[对象对象]”。 将代码修改为 不知道为什么,改就是了

  • core-js/modules/es.error.cause.js 报错2022-09-13 17:30:40

    解决方法: 1、先删除 node_modules 依赖 npm rm -rf node_modules 2、首先安装 报错的插件 npm install --save core-js 3、最后再 npm install 或者 yarn install npm install yarn install 4、最后 npm run dev 运行启动 npm run dev

  • python报错ImportError: cannot import name 'etree' from 'lxml' (E:\python\python2022-09-13 15:32:38

    lxml安装正常,import lxml正常,from lxml import etree 报错,查了很多资料,摘两个“网友普遍觉得好用但对我的问题并没有用”的方法于下,也许能解决其他人的问题: 1、电脑中具有 lxml 同名文件,重命名即可。 2、高版本lxml没有etree模块。有网友确定lxml4.2.5版本带有etree模块,且该版本lx

  • Virtual Box 启动提示报错VT-x is not available2022-09-13 14:01:47

    Virtual Box 启动提示报错VT-x is not available 参考链接: https://www.jianshu.com/p/2e3429d45aea https://www.cnblogs.com/linkyip/p/15769911.html

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

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

ICode9版权所有