traveling in cumputer science!!
发布时间:2015-12-31 11:37:04
关闭 mongodb 出错: Error: shutdownServer failed: not authorized on admin to execute command { shutdown: 1.0 }
开启的操作是在/etc/mongo.conf,添加如下设置:
从报错内容上看是权限不够,但不明了为什么,因为已经使用的超级用户权限:
经过查询错误解决办法,了解到是集群管理权限不够,添加相应权限之后就可以解决问题,变更用户权限如下:
成功关闭数据库系统:......【阅读全文】
发布时间:2015-12-29 22:21:39
mongodb 的 C++驱动安装过程以及注意问题
安装C++版驱动之前,先安装C版的驱动
安装平台:ubuntu14.04 64位
安装PDK
下载安装包,并配置tar xzf mongo-c-driver-1.3.0.tar.gz
make && make install
系统:Linux 或 OSX 编译器:clang++ 3.4+ 或 g++ 4.9+ Cmake:CMake 3.1+
安装新版的Cmake
下载安装C++驱动
./example: error while loading shared libraries: libmongoc-1.0.so.0: cannot open shared object file: No such file or directory
LD_LIBRARY_PATH=/usr/local/lib ./example
可知链接库没有mongoc.conf配置文件,因此创建,并在文件中加入mongoc库的路径:......【阅读全文】
发布时间:2015-12-29 22:16:11
mongodb C/C++ driver 通过帐号验证登录mongo服务器并进行相应操作
1。C 语言登录mongodb,解决登录失败错误:Authentication failed.: mongoc client_authenticate error
client = mongoc_client_new("mongodb://mydbUser:aaaaaa@localhost:27017/?authSource=mydb")
登录出错是因为uri格式不对,错误提示:
what(): Authentication failed.: mongoc client_authenticate error
C++ 登录mongodb......【阅读全文】
发布时间:2015-12-29 16:23:20
mongodb安装过程
?1。开启数据库
数据库的配置内容已经在/etc/mongod.conf 中配置好
2。登录数据库
3。建立新库
4。为新库创建用户
5。登录新库
6。建立集合
7。为集合插入新内容......【阅读全文】
发布时间:2015-12-06 17:12:51
开启MongoDB不能访问web控制台问题;
It looks like you are trying to access MongoDB over HTTP on the native driver port.
--httpinterface 就是设定开启web服务的......【阅读全文】