[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...
[SSH] Dokcer 基于 Alpine 构建 SSH 服务 2023-06-11 ssh 1068 words 3 mins read 基于alpine构建ssh服务 Docker构建SSH服务镜像 基于alpine构建,拉取alpine镜像 1 2 3 4 5 6 7 > docker pull alpine Using default tag: latest latest: Pulling from library/alpine Read more...