NOSQL
文章平均质量分 73
warrior_zhang
这个作者很懒,什么都没留下…
展开
-
install Mongodb in ubuntu (Linux)
1.首先引入安装Mongodb包需要的公钥,方法如下:2.更新软件源,获取最新稳定版软件包:4.(可选)设置MongoDB不自动更新:5.启动MongoDB:6. 查看MongoDB运行状态:7。注意:如果是系统非正常关闭,这样启动会报错,由于mongodb自动被锁上了,这是需要进入mongodb数据库文件所在的目录(/var/lib/mongodb/),删除目录中的mongodb.lock文件,然后再进行上述操作。原创 2015-12-07 12:16:33 · 445 阅读 · 0 评论 -
Mongodb启动方法:设定参数启动;从设置文件启动
1.默认启动方式并设置相应的参数:sudo mongod --path yourDBpath --httpinterface ......2.通过设置文件启动: 先设置启动文件:/etc/mongod.conf:sudo vi /etc/mongod.conf 下面是我的设置内容,共参考:warrior@warrior:~$ cat /etc/mongod.c原创 2015-12-07 16:07:13 · 8106 阅读 · 0 评论 -
关闭 mongodb 出错: Error: shutdown failed: not authorized
开启认证功能之后,出现了不能关闭数据库的现象,报错如下:点击(此处)折叠或打开 Error: assert failed : unexpected error: Error: shutdownServer failed: not authorized on admin to execute command { shutdown: 1.0 }开启的操作是在/etc/mongo.conf,添加如下设置:点击(此处)折叠或打开 security: authorizat原创 2016-01-12 13:03:34 · 4731 阅读 · 0 评论 -
mongodb 的 C++驱动安装过程以及注意问题
1。安装C++版驱动之前,先安装C版的驱动,过程如下: 我的安装平台:ubuntu14.04 64位,其他平台可参考:http://api.mongodb.org/c/current/installing.html#installing-unix (1) 安装PDK:点击(此处)折叠或打开 sudo apt-get install pkg-config libssl-dev libsasl2-dev (2)下载安装包,并配置:点击(此处)折叠或打原创 2016-01-12 13:03:32 · 6968 阅读 · 6 评论 -
mongodb C/C++ driver 通过帐号验证登录mongo服务器并进行相应操作
1。C 语言登录mongodb,解决登录失败错误:Authentication failed.: mongoc client_authenticate error代码如下:原创 2016-01-12 13:03:29 · 7289 阅读 · 3 评论 -
mongodb 建库过程(ubuntu shell 版)
mongodb安装过程:http://blog.chinaunix.net/uid-29454152-id-5567669.html1。开启数据库: 数据库的配置内容已经在/etc/mongod.conf 中配置好,参考链接:https://docs.mongodb.org/manual/reference/configuration-options/点击(此处)折叠或打开 sudo mongod --config /etc/mongod.conf2。登录数据库:点原创 2016-01-12 13:03:26 · 1912 阅读 · 0 评论 -
开启MongoDB不能访问web控制台问题;; access MongoDB over HTTP
1。首先确认访问端口:点击(此处)折叠或打开 http://yourip:28017 访问端口是28017,比服务器端口27017大1000,(为什么??这个就不知道了,这么记着吧先)2。如果访问端口没有错的话,接下来是第二个要解决的问题 2.6版本以后的安装文件都默认设置成了关闭WEB控制台,所以我们可以通过在启动时,把这个功能打开:点击(此处)折叠或打开原创 2016-01-12 13:03:23 · 7701 阅读 · 0 评论