
数据库
good_tang
爱代码,更爱生活。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux下安装mongo
下载地址:https://www.mongodb.com/download-center#community 下载安装 curl -O https://fastdl.mongodb.org/linux/… or wget https://fastdl.mongodb.org/linux/… tar -zxvf mongodb-linux-… mv mongodb-linux-…/...原创 2018-10-22 17:28:55 · 181 阅读 · 0 评论 -
mysql备份shell脚本
#!/bin/sh # 备份保留时间 7天 BTIME=7 # 文件名 DATENAME=`date "+%Y-%m-%d_%H_%M"` # 备份目录 _DIR="/data/" # 数据库信息 USER="root" PWD="123456" DATABASE="test" # 备份并压缩 mysqld原创 2018-11-21 14:10:13 · 815 阅读 · 0 评论