2 Star 0 Fork 2

逆月翎 / 血流红中麻将-十二星座大厅服

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mongo.backup.sh 500 Bytes
一键复制 编辑 原始数据 按行查看 历史
逆月翎 提交于 2023-12-06 14:55 . remove game-server
#!/bin/bash
MONGO_DATABASE="mahjong"
APP_NAME="mahjong"
MONGO_HOST="127.0.0.1"
MONGO_PORT="27017"
TIMESTAMP=`date +%F-%H%M`
MONGODUMP_PATH="/usr/bin/mongodump"
BACKUPS_DIR="/root/backup/$APP_NAME-$TIMESTAMP"
collection_list="players gms clubmembers clubs globals gmplans"
for collection in $collection_list; do
echo $collection
out_dir=${BACKUPS_DIR}
mkdir -p ${out_dir}
${MONGODUMP_PATH} -u ulong_remote -p ulong_remote --collection $collection --db $MONGO_DATABASE --out ${out_dir}
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cyntc_1061451899/poker-majiang-dating.git
git@gitee.com:cyntc_1061451899/poker-majiang-dating.git
cyntc_1061451899
poker-majiang-dating
血流红中麻将-十二星座大厅服
master

搜索帮助