查看mongod 是否启动,启动了会显示进程ID和程序名
pgrep mongod -l
查找mongod的位置
whereis mongod 或locate mongod
启动mongod
mongod -f /etc/mongodb.conf
启动客户端连接mongod用mongo,退出用exit
show dbs;
use db;
show tables;或db.getCollectionNames(); 显示所有集合
db.getName();或db; 显示当前用的数据库
db.rooms.find(); 显示集合的内容
不能用kill -9停止mongo
正确关闭mongod 的方法:进入mongo shell
use admin
db.shutdownServer()