05 2020 档案

摘要:mysql 版本 5.5 向目的MySQL写入数据时,单行数据较大,遇到插入失败,报错信息如下:Error 'Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC 阅读全文
posted @ 2020-05-09 20:14 又见江南 阅读(3040) 评论(0) 推荐(0)
摘要:使用iconv 转换 Iconv语法:iconv -f encoding -t encoding inputfile 单个文件转换: $ iconv -f GBK -t UTF-8 file1 -o file2 批量转换: $ find default -type d -exec mkdir -p 阅读全文
posted @ 2020-05-07 21:08 又见江南 阅读(1628) 评论(0) 推荐(0)
摘要:pem证书转pfx证书分两种,一种带ca证书转换,一种不带ca证书转换 1.pem转pfx(不带ca证书)以test.pem转test.pfx为例1. openssl rsa -in test.pem -out test.key2. openssl x509 -in test.pem -out te 阅读全文
posted @ 2020-05-04 21:01 又见江南 阅读(5964) 评论(0) 推荐(0)