jnan77 发布于 06月07, 2017 0 comments mongodb基础命令 创建用户db.createUser({ user: 'my_mongo_user', pwd: 'my_mongo_password', roles: [{role: 'readWr... 阅读全文 »
jnan77 发布于 06月02, 2017 0 comments linux系统优化 调整 ulimit在配置文件 /etc/security/limits.conf 中设置:#<domain> <type> <item> ... 阅读全文 »
jnan77 发布于 06月02, 2017 0 comments linux常用命令 shell递增((count = ${count} + 1))同时关闭多个进程ps x|grep {psname}|grep -v grep |awk '{print $1}'| xargs kill... 阅读全文 »
jnan77 发布于 05月31, 2017 0 comments mysql常用命令 备份 #!/bin/bash DY=$(date +"%Y%m%d") DT=$(date +"%H%M") DBS="db1 db2" DB_USER=root DB_PSW=password SQ... 阅读全文 »
jnan77 发布于 05月03, 2017 0 comments rsync文件同步命令详解 rsync-nrvt--progress--exclude="/opt/test/file.txt"/opt/test/root@ip:/opt/test/详细参数-v,--ver... 阅读全文 »