如何安装mongodb请参考前一篇文章《mongodb在Linux下的安装》
mongod服务启动之后,我们该启动客户端,./bin/mongo
这个时候其实已经启动成功了,但是会出现一些警告性的错误:
MongoDB shell version: 3.0.6
connecting to: test
Server has startup warnings:
2015-08-28T15:29:38.513+0800 I CONTROL [initandlisten] ** WARNING: You are running this process as the root user, which is not recom...
mongodb在Linux下的安装
这两天正在准备学习mongodb,安装mongodb确实很简单,只需要解压即可,但是过程还是遇到了一些阻碍,庆幸的解决了并且启动成功了,在此分享。
1.下载mongodb,官方下载地址:https://www.mongodb.org/downloads
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.6.tgz
OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure
Unable to establish SS...
windows下安装MongoDB PHP扩展
用于window平台的预编译php mongodb驱动二进制包,下载地址:https://s3.amazonaws.com/drivers.mongodb.org/php/index.html
下载与你php对应的版本。
但是也需要一些注意点:
1、查看phpinfo信息根据Compiler项确定要选择的扩展的vc版本
2、查看phpinfo信息根据Thread Safety项确定选择线程安全模式ts或者非线程安全模式nts
3、下载完你需要的二进制包后,解压压缩包,将'php_mongo.dll'文件添加到你的PHP...