Archive Post
Home
使用acme.sh免费申请证书
国内服务器: git clone https://gitee.com/neilpang/acme.sh.git cd acme.sh ./acme.sh --install -m my@example.com…
debian12 pip3 install runlike报错问题解决方法
apt install python3-pip 报错: 第一种:使用venv虚拟环境: apt install python3-venv mkdir -p…
zookeeper和kafka集群搭建
services: portainer: image: portainer/portainer restart: always hostname: portainer container_name: portainer…
clickhouse运维——优化查询性能
在 ClickHouse 中,优化查询性能的配置设置可以显著提高系统的响应速度和资源利用率。以下是一些常用的配置优化选项: 1. 查询级别设置 max_threads:控制查询的最大并发线程数。默认通常为服务器 CPU 核心数。设置更高的并发数可能会增加查询速度,但需要根据硬件资源进行合理调整。sqlSET max_threads =…
postgresql运维——docker快速搭建
version: '3.9' services: db: image: postgres:16.2 restart: always # set…
为 Debian/Ubuntu 系统配置中文语言环境并安装中文字体
sudo apt update sudo apt install language-pack-zh-hans sudo update-locale LANG=zh_CN.UTF-8…