码迷,mamicode.com
首页 > 数据库 > 详细

ubuntu下mongodb常用命令

时间:2015-03-31 21:40:01      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

1. 启动脚本

#!/bin/bash
mongod --dbpath /usr/local/mongodb/data1

chmod +x run-mongodb

2. 关闭数据库服务

官方文档说可以使用killall mongo或kil  -15 PID来关闭。

或者在Mongo Javascript Shell中
>use admin
>db.shutdownServer( )
mongo默认处于test,如果直接运行会出现
> db.shutdownServer()
shutdown command only works with the admin database; try ‘use admin‘

3. 以admin身份启动shell命令

 

mongo 127.0.0.1:27017/admin 

 

ubuntu下mongodb常用命令

标签:

原文地址:http://www.cnblogs.com/gaopeng527/p/4381817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!