如何判断您正在运行的MongoDB版本

时间:2021-09-17 06:29:56

When I look at the output from phpinfo() it states mongodb version 1.1.2.

当我查看phpinfo()的输出时,它表示mongodb版本1.1.2。

When I run db.version() in Robomongo it states 3.2.1.

当我在Robomongo中运行db.version()时,它表示3.2.1。

Why does phpinfo() give me a different version to that from Robomongo?

为什么phpinfo()给我一个与Robomongo不同的版本?

Also, how can I tell if I have the latest PHP Drivers for MongoDB?

另外,如何判断我是否有最新的MongoDB PHP驱动程序?

2 个解决方案

#1


2  

The output from phpinfo() is the PHP driver version. The db.version() in Robomongo shows the MongoDB core version.

phpinfo()的输出是PHP驱动程序版本。 Robomongo中的db.version()显示了MongoDB核心版本。

This page provides information on the current drivers available.

此页面提供有关当前可用驱动程序的信息。

As of this posting, you have the latest version of the driver and MongoDB.

截至本帖子,您拥有最新版本的驱动程序和MongoDB。

#2


0  

phpinfo() returns the version of your PHP Mongo driver, whereas as Robomongo is returning the version of your Mongo instance. According to GitHub, the latest release for the PHP driver is 1.1.2, so you are using the most recent PHP driver for MongoDB.

phpinfo()返回PHP Mongo驱动程序的版本,而Robomongo返回Mongo实例的版本。根据GitHub,PHP驱动程序的最新版本是1.1.2,因此您使用最新的MongoDB PHP驱动程序。

#1


2  

The output from phpinfo() is the PHP driver version. The db.version() in Robomongo shows the MongoDB core version.

phpinfo()的输出是PHP驱动程序版本。 Robomongo中的db.version()显示了MongoDB核心版本。

This page provides information on the current drivers available.

此页面提供有关当前可用驱动程序的信息。

As of this posting, you have the latest version of the driver and MongoDB.

截至本帖子,您拥有最新版本的驱动程序和MongoDB。

#2


0  

phpinfo() returns the version of your PHP Mongo driver, whereas as Robomongo is returning the version of your Mongo instance. According to GitHub, the latest release for the PHP driver is 1.1.2, so you are using the most recent PHP driver for MongoDB.

phpinfo()返回PHP Mongo驱动程序的版本,而Robomongo返回Mongo实例的版本。根据GitHub,PHP驱动程序的最新版本是1.1.2,因此您使用最新的MongoDB PHP驱动程序。