随笔分类 -  报错记录

editplus远程连接服务器,修改文件保存警告:could not create backup file do you want to change the backup options
摘要:出现此报错是因为连接远程,editplus默认会设置生成备份文件 解决方法: tool--> configure...,如下图所示: File-->Backup Options..., 如下图所示: 将Create backup...前面的勾去掉即可 阅读全文
posted @ 2020-08-12 13:05 jaysonteng 阅读(907) 评论(0) 推荐(0) 编辑
linux中sudo fdisk -l报错:GPT PMBR size mismatch will be corrected by write错误
摘要:问题产生原因: 在对虚拟机扩容时候,由于linux系统没有对其磁盘信息进行更新,导致了磁盘实际容量和linux系统容量不一致 报错的地方: 1、使用sudo fdisk -l查看磁盘信息时报错:GPT PMBR size mismatch will be corrected by w(rite)错误 阅读全文
posted @ 2020-08-05 22:29 jaysonteng 阅读(18024) 评论(2) 推荐(4) 编辑
WinSCP传输文件到虚拟机linux报错:SSH2_MSG_CHANNEL_FAILURE for nonexistent channel 0
摘要:情况说明: 使用的系统的ubuntu server 18.04,虚拟机是VM VirtualBox,我在使用winscp传输文件到虚拟机ubuntu时,文件传输到一半的时候就报此错误,并且winscp的连接会断开。 在网上查找了好多方法没有解决。 最后,发现是虚拟机的磁盘满了。 解决办法 1.删掉虚 阅读全文
posted @ 2020-08-05 07:14 jaysonteng 阅读(6685) 评论(0) 推荐(1) 编辑
zookeeper报错:ERROR [main:QuorumPeerMain@86] - Invalid config, exiting abnormally org.apache.zookeeper.server.quorum.QuorumPeerConfig$ConfigException: Address unresolved: node01:3888
摘要:问题描述 启动zookeeper时,感觉一切正常,但是通过zkServer.sh status查看状态时,发现报错: Error contacting service. It is probably not running. 通过查看 zk/logs下的文件,发现有如下报错: ERROR [main 阅读全文
posted @ 2020-08-01 11:23 jaysonteng 阅读(5445) 评论(2) 推荐(6) 编辑
hive启动报错:Exception in thread "main" java.lang.RuntimeException: com.ctc.wstx.exc.WstxParsingException: Illegal character entity: expansion character (code 0x8 at
摘要:报错如下: Exception in thread "main" java.lang.RuntimeException: com.ctc.wstx.exc.WstxParsingException: Illegal character entity: expansion character (cod 阅读全文
posted @ 2020-07-31 23:21 jaysonteng 阅读(9906) 评论(0) 推荐(0) 编辑
hive启动报错:Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgumen
摘要:报错如下: Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument(ZLjava/lang/String;Ljava/lang/Object; 阅读全文
posted @ 2020-07-31 23:11 jaysonteng 阅读(11312) 评论(0) 推荐(2) 编辑
hive安装报错:Class path contains multiple SLF4J bindings
摘要:报错如下: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/usr/local/hive/lib/log4j-slf4j-impl-2.10.0.jar!/org/slf4j 阅读全文
posted @ 2020-07-31 23:02 jaysonteng 阅读(5007) 评论(0) 推荐(0) 编辑
local variable 'x' referenced before assignment
摘要:出现此情况原因: 1、说明x在其他函数中定义过,但x不是全局变量。(或者是多线程调用本函数,因为共享变量,也会报此错误) 2、变量在本函数中,在其调用之前的if语句中被定义过,但由于某次执行,不满足条件,使得x未进入过if语句,从而使得a未真正意义上被定义,所以报此错误。 比如: def func1 阅读全文
posted @ 2020-05-29 14:43 jaysonteng 阅读(928) 评论(0) 推荐(0) 编辑
linux cp复制文件、文件夹出现略过目录的解决办法
摘要:出错代码: cp pycharm_project_312 ~/project/ 报错情况: 解决办法: 在 cp后面加上 -r。 cp -r pycharm_project_312 ~/project/ 注:在linux中——文件夹操作,复制(cp)和删除(rm)文件夹 ,都需要加上-r;移动(mv 阅读全文
posted @ 2020-04-15 13:42 jaysonteng 阅读(3837) 评论(0) 推荐(0) 编辑
pycharm保存报错
摘要:一、Unable to save settings 问题:pycharm打开工程报Unable to save settings 解决方法:把当前打开工程目录下面的.idea目录删除,重启pycharm即可 二、following errors occurred on attempt to save 阅读全文
posted @ 2020-04-02 15:04 jaysonteng 阅读(5430) 评论(0) 推荐(0) 编辑
python使用进程池多进程时,如何打印错误信息
摘要:一、说明 1、python进程池进行多进程运行时,如果有错误,该进程会直接跳过,并且不会打印错误信息。 2、如果需要了解到进程内的错误信息,此时就需要通过捕获异常来输出错误信息了。 二、具体方法如下: 法一: 注:此方法不会打印错误代码具体位置 a = [1, 2, 3] try: b = a[5] 阅读全文
posted @ 2020-01-06 15:35 jaysonteng 阅读(2267) 评论(0) 推荐(0) 编辑