解决端口占用 Windows上端口占用会提示诸如以下错误: Fatal error. can't bind to 127.0.0.1:10809: There may be another Privoxy or some other proxy running on port 10809 解决该异常 ...
Introduction celery beat is a scheduler; It kicks off tasks at regular intervals, that are then executed by available worker nodes in the cluster. By ...
分类:
其他好文 时间:
2020-06-01 22:16:16
阅读次数:
117
数据库主从出错: Slave_IO_Running: No 一方面原因是因为网络通信的问题也有可能是日志读取错误的问题。以下是日志出错问题的解决方案: Last_IO_Error: Got fatal error 1236 from master when reading data from bin ...
分类:
其他好文 时间:
2020-05-31 21:49:50
阅读次数:
90
log4j定义了8个级别的log(除去OFF和ALL,可以说分为6个级别),优先级从高到低依次为:OFF、FATAL、ERROR、WARN、INFO、DEBUG、TRACE、 ALL。 ALL:最低等级的,用于打开所有日志记录。 TRACE: designates finer-grained inf ...
分类:
其他好文 时间:
2020-05-30 21:47:46
阅读次数:
76
git解决 fatal: not in a git directory 问题描述:执行下面语句时报错:fatal: not in a git directorygit config --global user.name "yourName" //注意,--和global之间没有空格git confi ...
分类:
其他好文 时间:
2020-05-30 17:14:01
阅读次数:
548
日志级别 import logging CRITICAL = 50 # FATAL = CRITICAL ERROR = 40 WARNING = 30 # WARN = WARNING INFO = 20 DEBUG = 10 NOTSET = 0 # 不设置 基本配置 import loggin ...
分类:
其他好文 时间:
2020-05-29 20:57:27
阅读次数:
60
答: 替换--set-upstream为--set-upstream-to, 示例如下: a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py @@ -326,7 +326,7 @@ class Git(FetchMeth ...
分类:
其他好文 时间:
2020-05-28 21:42:59
阅读次数:
372
1.物理层结构 物理层被分成两个子层: 物理层汇聚过程(Physical Layer Convergence Procedure,简称PLCP)功能在于结合来自MAC帧与空中所传输的无线电波 子层以及物理媒体相关(Physical Medium Dependent,简称PMD)子层 物理层还包含了空 ...
分类:
其他好文 时间:
2020-05-27 10:32:27
阅读次数:
69
顺序打印ABCABC...ABC,打印10组。 方法一:使用ReentrantLock和Condition实现。使用三组Condition来实现线程之间的通信。 1 public class PrintABC implements Runnable { 2 3 private int times = ...
分类:
编程语言 时间:
2020-05-25 19:57:23
阅读次数:
89
1、问题描述opencv第一次编译时,报错GL/gl.h: No such file or directory错误信息如下: /home/wrj/anaconda3/include/qt/QtGui/qopengl.h:139:22: fatal error: GL/gl.h: 没有那个文件或目录 ...
分类:
其他好文 时间:
2020-05-25 09:31:21
阅读次数:
214