How to download Mongodb 3.0? [closed]
Asked Answered
A

6

8

I have used PHP Version 5.3, So i need to Download MongoDB 3.0 and PHP Driver version 1.6 how to download older version (3.0) of MongoDB and PHP Driver.. And also i want use PHP composer and already i have used Composer for like composer require "mongodb/mongodb=^1.0.0" (for PHP Driver version 1.0), Now i want to use PHP composer for PHP Driver Version 1.6..

composer require "mongodb/mongodb=^1.6.0" is it Possible?

please suggest your solution and post download link for MongoDB3.0

Apparel answered 16/12, 2016 at 5:38 Comment(4)
Here is the mongo download locatio mongodb.org/dl/win32/…Bissau
.exe file not there in your suggest download path, only available installed folder... i have downloded folder as you suggested how to config that folder..@BissauApparel
It seems the name of the question isn't correctWagshul
This link works in 2020: mongodb.org/dl/win32/x86_64-2008plus-sslStomatic
L
3

You can download MongoDB from here: https://www.mongodb.com/download-center?jmp=nav#community

Just scroll down a bit and there's a link named "All Version Binaries" just below the download button. It opens a page that lists all previous releases of MongoDB. Also, remember to select your OS before clicking on the link.

Labourer answered 27/1, 2017 at 6:21 Comment(2)
Mentioning links can be done in the comments section. Answer section must contain your contributionShipman
Not enough rep to comment. Sorry.Labourer
B
0

To start mongo you need to unzip the folder and start with /mongod.exe (in windows). My suggestion is to create an data folder and specify dbpath as the data folder. Their are various other parameters as well which you can configure. Here is the further installation details.

Once you start the server, verify you can connect to it. You can use a GUI tool (Robomongo works best) or you can use mongo shell command.

To access mongo via php, you can refer here

Please let us know if you face errors.

Bissau answered 20/1, 2017 at 8:14 Comment(5)
directly i have to tried run mongod.exe but doesnot work.. if i have set environmental variable for current folder path it may work?@BissauApparel
finally i have unziped folder in D Drive, and my folder struture is D:\MongoDB\Server\3.0\bin and i have created data folder and db folder as D:\MongoDB\Data\db nxt what can i do? can i set Environment path? @BissauApparel
To start mongo you need to run mongod.exe. For example, from the Command Prompt: D:\MongoDB\Server\3.0\bin\mongod.exe --dbpath D:\MongoDB\Data\dbBissau
i have already used phpdriver version 1.0 and php composer for 1.0 ( mongo3.2 with php 5.5) can i use same driver and composer?@BissauApparel
how to create batch file to start mongo (D:\MongoDB\Server\3.0\bin\mongod.exe --dbpath D:\MongoDB\Data\db) @BissauApparel
S
0

If am not wrong https://packagist.org/packages/mongodb/mongodb has all ur answers and to fetch latest mongodb releases. And as far as i know PHP Driver version 1.5 and 1.6 are only compatible for PHP version 5.3.

Ref : https://docs.mongodb.com/ecosystem/drivers/php/

Stithy answered 24/1, 2017 at 8:41 Comment(0)
T
0

did you try this link?

https://www.mongodb.com/download-center?jmp=nav#community

Allows you to select between various editions.

Throb answered 27/1, 2017 at 6:0 Comment(0)
S
-1

At the moment of this writing the MongoDB Driver Library mongodb/mobgodb has version 1.1.1.

How are you going to use version 1.6?

It has also following requirements:

  • php: >=5.4
  • ext-mongodb: ^1.2.0

So, it does not work with PHP 5.3

Sevigny answered 20/1, 2017 at 15:18 Comment(2)
which version of PHP driver i can use with Mongodb 3.0 with php 5.3? @Gennadiy LitvinyukApparel
can i use 1.1.0 version of PHP driver ? @Gennadiy LitvinyukApparel
A
-2

At the moment of this writing the MongoDB Driver Library mongodb/mobgodb has version 1.1.1. There are many way to use in different versions. How do you use version 1.6?

Some requirements are needed :

php: >=5.4
ext-mongodb: ^1.2.0

So, you do not use it with PHP 5.3

Agathaagathe answered 21/1, 2017 at 21:9 Comment(1)
Did you just paraphrased my answer?Sevigny

© 2022 - 2024 — McMap. All rights reserved.