linux下安装mongodb的方法和终端下基本操作
Posted 稀里糊涂林老冷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下安装mongodb的方法和终端下基本操作相关的知识,希望对你有一定的参考价值。
在linux环境安装mongoDB:
一般认为偶数版本为稳定版 如 1.6.x,奇数版本为开发版如1.7.x
32bit的mongoDB最大能存放2g的数据,64bit没有限制
方法1:
终端执行:
安装服务器: sudo apt install mongodb-server
安装客户端: sudo apt install mongodb-clients
方法2:
1 官网下载合适版本
2 解压到/user/local/目录下: tar -zxvf 安装压缩包 /user/local/mongodb
3 添加可执行文件到path路径: export PATH=/usr/local/mongodb/bin:$PATH
基本操作:
服务器:
启动服务器: sudo service mongodb start
停止服务器: sudo service mongodb stop
重启服务器: sudo service mongodb restart
注意:
有些linux系统是 sudo service mongod start/stop/restart
有些人是 sudo service mongodb start/stop/restart
客户端:
连接服务器:
mongo
查看参数:
mongo --help
退出mongo服务:
exit 或 ctr + c
查看当前使用数据库(登录后默认使用test数据库):
db
查看所有数据库(物理真实创建出来的数据库):
show dbs
切换数据库(use不存在的库会在内存中临时建库,之后创建集合文件会自动在物理上创建这个数据库):
use 库名
删除当前使用的数据库(如果数据库不存在就什么也不做):
db.dropDatabase()
以上是关于linux下安装mongodb的方法和终端下基本操作的主要内容,如果未能解决你的问题,请参考以下文章