摘要: 一 docker ps 查看正在运行的docker容器有哪些。 二 docker ps -a 查看所有docker容器,包括不在running状态的。 三 docker logs 参数 容器id 查看具体某一个容器的日志。 其中参数可选择的有: -f follow 表示实时显示日志 -t times 阅读全文
posted @ 2019-08-29 16:26 江湖凶险 阅读(26382) 评论(0) 推荐(0) 编辑
摘要: 1 删除数据库 命令:db.dropDatabase() 用法: show dbs use mydb db.dropDatabase() 最后,通过 show dbs 查看是否删除成功。 2 删除集合 命令:db.collection.drop() 用法: use testDb 切换到指定数据库 s 阅读全文
posted @ 2019-08-29 11:49 江湖凶险 阅读(1244) 评论(0) 推荐(0) 编辑
摘要: 命令:sync; echo 3 > /proc/sys/vm/drop_caches 分析: 运行sync将dirty的内容写回硬盘$sync 通过修改proc系统的drop_caches清理free的cache$echo 3 > /proc/sys/vm/drop_caches 阅读全文
posted @ 2019-08-29 11:08 江湖凶险 阅读(714) 评论(0) 推荐(0) 编辑