php mongodb driver


有时候安装一些东西总是会遇到一些问题,问题不大,记录下来,也算是实践心得吧。

git clone https://github.com/mongodb/mongo-php-driver.git
cd 目录
phpize
发现出现报错Configuring for:PHP Api Version: 20121113Zend Module Api No: 20121212Zend Extension Api No: 220121212/usr/bin/m4:config.m4:364: cannot open `src/libmongoc/build/autotools/m4/ax_prototype.m4‘: No such file or directory/usr/bin/m4:config.m4:365: cannot open `src/libmongoc/build/autotools/CheckCompiler.m4‘: No such file or directory/usr/bin/m4:config.m4:366: cannot open `src/libmongoc/build/autotools/WeakSymbols.m4‘: No such file or directory/usr/bin/m4:config.m4:367: cannot open `src/libmongoc/build/autotools/m4/ax_pthread.m4‘: No such file or directory/usr/bin/m4:config.m4:399: cannot open `src/libbson/build/autotools/CheckAtomics.m4‘: No such file or directory/usr/bin/m4:config.m4:400: cannot open `src/libbson/build/autotools/FindDependencies.m4‘: No such file or directory/usr/bin/m4:config.m4:401: cannot open `src/libbson/build/autotools/m4/ac_compile_check_sizeof.m4‘: No such file or directory/usr/bin/m4:config.m4:402: cannot open `src/libbson/build/autotools/m4/ac_create_stdint_h.m4‘: No such file or directory/usr/bin/m4:config.m4:444: cannot open `src/libmongoc/build/autotools/Versions.m4‘: No such file or directory/usr/bin/m4:config.m4:458: cannot open `src/libbson/build/autotools/Versions.m4‘: No such file or directoryautom4te: /usr/bin/m4 failed with exit status: 1

应该是是这样才对。Configuring for:PHP Api Version: 20121113Zend Module Api No: 20121212Zend Extension Api No: 220121212

经过查询,发现缺少东西,安装。

git submodule sync && git submodule update --init
重新安装扩展:
phpize --clean
phpize
yum install cyrus-sasl-devel
$ ./configure
$ make install

修改php.ini添加
extension=mongo.so
 
时间: 2024-11-23 00:31:28

php mongodb driver的相关文章

MongoDB.Driver 2.4以上版本 在.NET中的基本操作

MongoDB.Driver是操作mongo数据库得驱动,最近2.0以下版本已经从GitHub和Nuget中移除了,也就是说.NET Framework4.0不再能从官方获取到MongoDB得驱动了,其次MongoDB.Driver2.0开始API变更巨大,本文不适用MongoDB.Driver2.0以下版本,亦不适用.NET Framework4.5以下版本 要在.NET中使用MongoDB,就必须引用MongoDB的驱动,使用Nuget安装MongoDB.Driver是最方便得,目前Nuge

MongoDB 3.0 关于安全认证后使用C#调用碰上“System.TimeoutException”类型的异常在 MongoDB.Driver.Core.dll 中发生的相关问题

"System.TimeoutException"类型的异常在 MongoDB.Driver.Core.dll 中发生,但未在用户代码中进行处理 操作MongoDB类库版本: ---------------------------------------------- MongoDB.Driver 2.3 MongoDB.Driver.Core 2.3 MongoDB.Bson 2.3 MongoDB 版本 3.0 连接字符串的相关变化: -----------------------

Mongodb.Driver操作MongoDB

上一篇博客主要介绍了MongoDB和它的的使用场景,这篇文章主要介绍一下如何用C#如何借助官方的Mongodb.Driver操作MongoDB 1.NuGet引入Mongodb.Dirver 安装后项目中会新增如下dll MongoDB.Driver.dll:顾名思义,驱动程序 MongoDB.Bson.dll:序列化.Json相关 2.初始化集合,子类需重写集合名 #region 构造函数 /// <summary> /// 集合 /// </summary> public st

基于MongoDB.Driver的扩展

由于MongoDB.Driver中的Find方法也支持表达式写法,结合[通用查询设计思想]这篇文章中的查询思想,个人基于MongoDB扩展了一些常用的方法. 首先我们从常用的查询开始,由于MongoDB.Driver支持类似于AutoMapper返回的指定属性(Project<TDto>方法),所以这里都是基于泛型的扩展 /// <summary> /// 同步查询指定条件的数据,并且返回指定类型TDto /// </summary> /// <typeparam

扩展 MongoDB.Driver 支持实体使用方式

一.安装 Install-Package Apteryx.MongoDB.Driver.Extend 移步我的项目https://github.com/code-institutes/Apteryx.MongoDB.Driver.Extend有详细的使用说明. 原文地址:https://www.cnblogs.com/apteryx/p/10818941.html

mongodb driver c#语法

Definitions and BuildersThe driver has introduced a number of types related to the specification of filters, updates, projections, sorts, and index keys. These types are used throughout the API. Most of the definitions also have builders to aid in th

Java MongoDB Driver 3.x - Quickly Start

Maven Dependency: <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>3.2.2</version> </dependency> Make a Connection The following example shows five ways to conn

通过php的MongoDB driver连接Azure的DocumentDB PaaS

Azure的DocumentDB是NoSQL类型的数据库.它还可以和目前流行的mongodb兼容,采用mongodb的driver可以直接连接Azure的DucumentDB. 目前在国内的Azure上,DocumentDB已经正式商用了,兼容mongodb的版本目前还在preview阶段. 本文将介绍如何创建,并通过php的mongodb的driver连接documentDB. 一 在Azure的管理界面上创建DocumentDB: 1 点击portal左上角的"+"号,然后输入do

Install MongoDB driver for PHP on XAMPP for Mac OSX

试了不少方法,最后还是这个最有效. [转自:http://thatsimplecode.com/install-mongodb-driver-for-php-on-xampp-for-mac-osx] You need to have the following installed in your Mac: MongoDB XAMPP for Mac OSX Homebrew Package Manager Type the following in your terminal : brew i