20 articles
Tuesday, Nov 3, 2020
之前一直使用的supervisor配置文件好好的 使用rsync迁移到新的主机后就莫名的出现了下面的错误 supervisor Error: File contains no section headers 后来找资料好久,才发现配置文件被更改了 正常的supervisor配置文件开始应该是下面这样...
Tuesday, Apr 7, 2020
The following warning appeared when reloading Nginx nginx: warn" sslstapling "ignored, not supported This error is telling you that the ssl configured...
Wednesday, Jan 1, 2020
执行rclone sync时出现了以下错误 2020/01/01 16:16:02 ERROR : : error listing: directory not found 2020/01/01 16:16:02 Failed to lsd with 2 errors: last error was...
Saturday, Nov 2, 2019
执行caddy程序时,出现了以下错误,系统为Debian 10 error while loading shared libraries: libzbar.so.0: cannot open shared object file: No such file or directory 解决方法 apt...
Thursday, Oct 31, 2019
supervisor ERROR spawn error的解决方法。。。执行以下命令即可解决。。。 supervisorctl update supervisorctl reload supervisorctl status
Monday, Oct 28, 2019
安装golang时出现了下面的错误 brew update && brew upgrade && brew install go@1.9 shell-init: error retrieving current directory: getcwd: cannot access parent dire...
Saturday, Feb 2, 2019
ERROR 1054 42S22: Unknown column 'id' in 'field list'的解決方法 出現這個錯誤,一般是指定的表不存在造成的,吭了一上午才發現 比如有些數據庫的自動使用的是id字段,有些使用的可能是filid字段。
Friday, Feb 1, 2019
進入mysql終端執行下面命令 SHOW VARIABLES LIKE 'sqlmode'; 如果啓用了嚴格模式就會顯示如下信息 mysql> SHOW VARIABLES LIKE 'sqlmode'; +---------------+------------------------------...
Saturday, Jan 12, 2019
出現以下錯誤的原因有很多種,本次出現錯誤如下 Starting LSB: start and stop MySQL... mysql21548: Starting MySQL.Logging to '/file/mysql/var/.err'. mysql21548: The server qu...
Wednesday, Jan 9, 2019
導出mysql數據庫時出現了以下錯誤 mysqldump error 1194 某個表損壞了,要修復一下 use tablesdataname; REPAIR TABLE tablename 解決問題