Caused by: java.net.SocketTimeoutException: Read timed out at java.net.SocketInputStream.socketRead0(Native Method) at java.net.SocketInputStream.sock ...
分类:
其他好文 时间:
2020-12-21 11:12:19
阅读次数:
0
大家好,在安装postgreSQL的版本为10.13的时候,会出现以下截图错误: 这个时候,我们需要做的就是打开cmd,按照以下截图所示操作: ...
分类:
编程语言 时间:
2020-07-21 21:33:46
阅读次数:
97
MySQL5.6.37版本,某人在测试环境主库误操作执行删表操作,导致主从断开,在从库查看主从信息如下: Last_Errno: 1837 Last_Error: Worker 3 failed executing transaction '' at master log mysql-bin.013 ...
分类:
数据库 时间:
2020-07-07 19:32:13
阅读次数:
102
https://blog.csdn.net/weixin_45752941/article/details/103289021 配置settings.xml加镜像时,多加了空格 解决办法,把空格都删掉 ...
分类:
其他好文 时间:
2020-07-05 15:27:21
阅读次数:
166
今天MySQL数据库,在使用的过程中一直报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. 之所以出现这个问题是因为用户可以登录到 ...
分类:
数据库 时间:
2020-07-03 10:51:19
阅读次数:
59
Shell script notes I used this tutorial to learn shell scripting: Shell Scripting Tutorial-Steve Parker. I given my executing result for almost every ...
分类:
系统相关 时间:
2020-06-26 22:22:32
阅读次数:
75
set global validate_password_policy=0; set global validate_password_length=4; 再授权 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH ...
分类:
数据库 时间:
2020-06-14 18:38:17
阅读次数:
65
错误描述: 服务间调用的时候 总是不通 feign.RetryableException: connect timed out executing POST http://common-service/supplywater/deviceManage/keyUnitData 原因、; 以zookee ...
分类:
编程语言 时间:
2020-05-07 15:34:16
阅读次数:
76
gem install bundlerERROR: Loading command: install (LoadError) cannot load such file -- opensslERROR: While executing gem ... (NoMethodError) undefine ...
分类:
系统相关 时间:
2020-04-08 09:27:53
阅读次数:
169
# -*- coding:utf-8 def a_new_decorator(a_func): def wrapTheFunction(): print("I am doing some boring work before executing a_func()") a_func() print(" ...
分类:
其他好文 时间:
2020-03-27 15:37:54
阅读次数:
68