posted @ 2023-02-01 17:18 青柠时光 阅读(33) 评论(0) 推荐(0) 编辑
摘要:
掘金:https://juejin.cn/backend 开源中国:https://www.oschina.net/project 源码:https://gitee.com/explore/all 在线字数统计工具:https://www.eteste.com/ https://www.yoyoas 阅读全文
摘要:
查看当前目录大小du -sh 列举当前目录大小列表du -sh *du -sh *|sort -nr 按照名称排序du -sh * | sort -rh | head -10 降序-按照大小排名du -sh * | sort -rh | tail -10 升序-从小到大 内存前10ps aux | 阅读全文
posted @ 2021-10-09 21:54 青柠时光 阅读(41) 评论(0) 推荐(0) 编辑
摘要:
start "" "E:\soft\openVpn\bin\openvpn-gui.exe" --connect yajue.ovpn --silent_connection 1 阅读全文
posted @ 2024-01-17 15:33 青柠时光 阅读(2) 评论(0) 推荐(0) 编辑
摘要:
https://mp.weixin.qq.com/s/y7bfcaFLiwp1npDrwjP19w 阅读全文
posted @ 2024-01-10 19:46 青柠时光 阅读(2) 评论(0) 推荐(0) 编辑
摘要:
#!/bin/bash free=$(free -h | grep "Mem" | awk '{print $4}' | cut -d "." -f 1) if [ -n "$free" ];then if [ $free -le 3 ];then echo "free height 阅读全文
posted @ 2024-01-08 16:41 青柠时光 阅读(130) 评论(0) 推荐(0) 编辑
摘要:
分片: 1. 配置config服务器:首先,需要配置config服务器来存储集群的元数据信息。通常,config服务器是一个独立的MongoDB实例。你可以通过启动一个mongod进程并指定`--configsvr`选项来将其配置为config服务器。例如: ``` mongod --configs 阅读全文
posted @ 2024-01-08 16:25 青柠时光 阅读(3) 评论(0) 推荐(0) 编辑
摘要:
地址:https://github.com/forthcoming/bus/edit/main/Readme.md ## 功能点 * **mongo单节点*** **redis单节点*** **redis集群*** **mysql单节点*** **nginx*** **miniconda*** ** 阅读全文
posted @ 2024-01-03 10:03 青柠时光 阅读(20) 评论(0) 推荐(0) 编辑