[Git] git提交使用SSH签名和GPG签名验证 2023-06-24 git 1297 words 3 mins read Git 支持使用SSH签名,也支持GPG签名提交记录 SSH签名 SSH 签名的工具是 ssh-keygen 使用 ssh-keygen 生成 SSH Key 1 ssh-keygen -t ed25519 -C "Gitee SSH Key" -t key 类型 -C 注释 执行后,在~/.ssh目 Read more...
[Go] 生成polygon和tron钱包地址 2023-06-23 golang 486 words 1 min read 使用Go语言创建Polygon公链钱包地址 生成Polygon公链钱包地址 Polygon是建立在以太坊上的Layer2解决方案,私钥、公钥、地 Read more...
[ClickHouse] ClickHouse 删除数据或分区后为什么还能查到? 2023-06-14 clickhouse 2237 words 5 mins read ClickHouse 删除数据或分区后为什么还能查询到? 在删除清理clickhouse系统日志数据时,执行完清理操作后,数据并没有立即删除。 清理操作如下: 1 2 3 Read more...
[ClickHouse] ClickHouse 启动失败 2023-06-14 clickhouse 501 words 1 min read ClickHouse 重启时一直提示Waiting for server to start, 无法启动生成。 修改clickhouse配置重启时,一直重启不成功。 1 2 3 4 $ sudo /etc/init.d/clickhouse-server restart Waiting for server to start Cannot start server. You can Read more...
[ClickHouse] ClickHouse 查询表占用空间大小 2023-06-14 clickhouse 2131 words 5 mins read ClickHouse查看数据库容量、表的指标、表分区、数据大小等。 业务表空间 通过 system.parts 查询数据库容量大小。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 SELECT formatReadableSize(sum(bytes)) AS bytes_size, formatReadableSize(sum(primary_key_bytes_in_memory)) Read more...