摘要:
#!/bin/sh mysql -uroot -pxxx -h172.16.13.179 -P 3305 -e "show variables; show status" | awk ' { VAR[$1]=$2 } END { MAX_CONN = VAR["max_connections"] M 阅读全文
随笔档案-2022年12月
各压缩工具对比
2022-12-28 17:19 by ndzj, 390 阅读, 收藏, 编辑
摘要:
lz4 zstd tar.gz tar.bz2 pigz 压缩前大小 26G 26G 26G 26G 26G 压缩后大小 6.2G 3.5G 3.6G 2.6G 3.6G 压缩比率 4.19 7.42 7.22 10 7.22 压缩耗时 1m24s 38s 12m54s 107m41s 1m47.s 阅读全文
mongodb shell设置
2022-12-26 10:58 by ndzj, 39 阅读, 收藏, 编辑
摘要:
host=db.serverStatus().host; cmdCount=1; prompt=function(){ return db+"@"+host+" "+(cmdCount++) +">"; } function showDate(){ var today = new Date(); v 阅读全文
Navicat Premium 工具安装和激活
2022-12-06 15:05 by ndzj, 269 阅读, 收藏, 编辑
摘要:
安装包下载: https://pan.baidu.com/s/1-0k7gGalLKhfiqngQMj-fg?pwd=3hpk 安装好navicat工具后不要打开软件,接下来是激活软件 打开激活软件,点Patch,找到安装navicat工具 接下来是点击Generate生成Keygen 最后一步是打 阅读全文
mongodb单实例lvm快照备份和恢复
2022-12-02 13:42 by ndzj, 124 阅读, 收藏, 编辑
摘要:
ps -ef|grep mongo #查看mongodb实例数据目录所在位置 root 1525 1389 3 20:44 pts/0 00:00:17 /usr/local/mongodb/bin/mongod –config /data/mongodb/conf/mongo_config.yml 阅读全文