Install specific MongoDB in Ubuntu 16.04How do you use apt-get to only install critical security updates on ubuntu?Mongodb ubdate on Ubuntu 10.04 LTSRecommended way to install mongoDBSomething's wrong with my Ubuntu, apt-get upgrade stopped workingUbuntu 12.04 - apt-get install ia32-libs unmet dependenciesMongoDB high CPU usageWhy can't i install mongodb 3.0 on Ubuntu 14.04 32bit?Authentication fails when connecting to Dockerized instance of MongoDBHow to downgrade mongodb 3.4.2 to 2.6.11?Unable to start MongoDB on Ubuntu
Why did the metro bus stop at each railway crossing, despite no warning indicating a train was coming?
Why is it harder to turn a motor/generator with shorted terminals?
Can multiple outlets be directly attached to a single breaker?
Should I communicate in my applications that I'm unemployed out of choice rather than because nobody will have me?
AMPScript Lookup From Child Business Unit
Do not cross the line!
Promotion comes with unexpected 24/7/365 on-call
How to redirect stdout to a file, and stdout+stderr to another one?
Are there any sonatas with only two sections?
Do Grothendieck universes matter for an algebraic geometer?
Why was my Canon Speedlite 600EX triggering other flashes?
Is it safe to use two single-pole breakers for a 240v circuit?
Developers demotivated due to working on same project for more than 2 years
Polynomial division: Is this trick obvious?
Problem in downloading videos using youtube-dl from unsupported sites
How do I identify the partitions of my hard drive in order to then shred them all?
Acronyms in HDD specification
Should generated documentation be stored in a Git repository?
Is this a group? If so, what group is it?
Alias for root of a polynomial
Smooth function that vanishes only on unit cube
Why does lemon juice reduce the "fish" odor of sea food — specifically fish?
How to continually let my readers know what time it is in my story, in an organic way?
Does "Software Updater" only update software installed using apt, or also software installed using snap?
Install specific MongoDB in Ubuntu 16.04
How do you use apt-get to only install critical security updates on ubuntu?Mongodb ubdate on Ubuntu 10.04 LTSRecommended way to install mongoDBSomething's wrong with my Ubuntu, apt-get upgrade stopped workingUbuntu 12.04 - apt-get install ia32-libs unmet dependenciesMongoDB high CPU usageWhy can't i install mongodb 3.0 on Ubuntu 14.04 32bit?Authentication fails when connecting to Dockerized instance of MongoDBHow to downgrade mongodb 3.4.2 to 2.6.11?Unable to start MongoDB on Ubuntu
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Below installs 2.6.10 mongo version in Ubuntu
sudo apt-get install mongodb-server
I am looking to get the 2.6.13 version. How to fetch the exact version? Also how to prevent sudo apt-get update/upgrade from upgrading mongo to 3.x
ubuntu mongodb
add a comment |
Below installs 2.6.10 mongo version in Ubuntu
sudo apt-get install mongodb-server
I am looking to get the 2.6.13 version. How to fetch the exact version? Also how to prevent sudo apt-get update/upgrade from upgrading mongo to 3.x
ubuntu mongodb
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu There is also a link on the page on how to install an older version (3.0).
– jftuga
Dec 1 '16 at 13:57
add a comment |
Below installs 2.6.10 mongo version in Ubuntu
sudo apt-get install mongodb-server
I am looking to get the 2.6.13 version. How to fetch the exact version? Also how to prevent sudo apt-get update/upgrade from upgrading mongo to 3.x
ubuntu mongodb
Below installs 2.6.10 mongo version in Ubuntu
sudo apt-get install mongodb-server
I am looking to get the 2.6.13 version. How to fetch the exact version? Also how to prevent sudo apt-get update/upgrade from upgrading mongo to 3.x
ubuntu mongodb
ubuntu mongodb
asked Dec 1 '16 at 12:54
Faiz Mohamed HaneefFaiz Mohamed Haneef
1308
1308
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu There is also a link on the page on how to install an older version (3.0).
– jftuga
Dec 1 '16 at 13:57
add a comment |
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu There is also a link on the page on how to install an older version (3.0).
– jftuga
Dec 1 '16 at 13:57
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu There is also a link on the page on how to install an older version (3.0).
– jftuga
Dec 1 '16 at 13:57
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu There is also a link on the page on how to install an older version (3.0).
– jftuga
Dec 1 '16 at 13:57
add a comment |
2 Answers
2
active
oldest
votes
1) It's too new, there's no package yet, so use the source, Luke!
2) echo <packagename> hold | dpkg --set-selections
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
add a comment |
MongoDB 2.6 reached end of life at the end of October, 2016. The final release version was 2.6.12 (so there will be no 2.6.13).
To install a specific release you can specify the desired version, eg:
sudo apt-get install -y mongodb-org=2.6.12 mongodb-org-server=2.6.12 mongodb-org-shell=2.6.12 mongodb-org-mongos=2.6.12 mongodb-org-tools=2.6.12
You can also pin a specific version of MongoDB to prevent unintended upgrades.
For each installed package you want to pin, use a command line similar to:
echo "mongodb-org hold" | sudo dpkg --set-selections
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f818113%2finstall-specific-mongodb-in-ubuntu-16-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
1) It's too new, there's no package yet, so use the source, Luke!
2) echo <packagename> hold | dpkg --set-selections
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
add a comment |
1) It's too new, there's no package yet, so use the source, Luke!
2) echo <packagename> hold | dpkg --set-selections
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
add a comment |
1) It's too new, there's no package yet, so use the source, Luke!
2) echo <packagename> hold | dpkg --set-selections
1) It's too new, there's no package yet, so use the source, Luke!
2) echo <packagename> hold | dpkg --set-selections
answered Dec 1 '16 at 13:43
Ipor SircerIpor Sircer
1,10337
1,10337
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
add a comment |
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
FYI, MongoDB 2.6 reached end of life at the end of October, 2016: mongodb.com/blog/post/mongodb-2-6-end-of-life. The final release version was 2.6.12.
– Stennie
Dec 4 '16 at 8:13
add a comment |
MongoDB 2.6 reached end of life at the end of October, 2016. The final release version was 2.6.12 (so there will be no 2.6.13).
To install a specific release you can specify the desired version, eg:
sudo apt-get install -y mongodb-org=2.6.12 mongodb-org-server=2.6.12 mongodb-org-shell=2.6.12 mongodb-org-mongos=2.6.12 mongodb-org-tools=2.6.12
You can also pin a specific version of MongoDB to prevent unintended upgrades.
For each installed package you want to pin, use a command line similar to:
echo "mongodb-org hold" | sudo dpkg --set-selections
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
add a comment |
MongoDB 2.6 reached end of life at the end of October, 2016. The final release version was 2.6.12 (so there will be no 2.6.13).
To install a specific release you can specify the desired version, eg:
sudo apt-get install -y mongodb-org=2.6.12 mongodb-org-server=2.6.12 mongodb-org-shell=2.6.12 mongodb-org-mongos=2.6.12 mongodb-org-tools=2.6.12
You can also pin a specific version of MongoDB to prevent unintended upgrades.
For each installed package you want to pin, use a command line similar to:
echo "mongodb-org hold" | sudo dpkg --set-selections
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
add a comment |
MongoDB 2.6 reached end of life at the end of October, 2016. The final release version was 2.6.12 (so there will be no 2.6.13).
To install a specific release you can specify the desired version, eg:
sudo apt-get install -y mongodb-org=2.6.12 mongodb-org-server=2.6.12 mongodb-org-shell=2.6.12 mongodb-org-mongos=2.6.12 mongodb-org-tools=2.6.12
You can also pin a specific version of MongoDB to prevent unintended upgrades.
For each installed package you want to pin, use a command line similar to:
echo "mongodb-org hold" | sudo dpkg --set-selections
MongoDB 2.6 reached end of life at the end of October, 2016. The final release version was 2.6.12 (so there will be no 2.6.13).
To install a specific release you can specify the desired version, eg:
sudo apt-get install -y mongodb-org=2.6.12 mongodb-org-server=2.6.12 mongodb-org-shell=2.6.12 mongodb-org-mongos=2.6.12 mongodb-org-tools=2.6.12
You can also pin a specific version of MongoDB to prevent unintended upgrades.
For each installed package you want to pin, use a command line similar to:
echo "mongodb-org hold" | sudo dpkg --set-selections
answered Dec 4 '16 at 8:19
StennieStennie
1,081612
1,081612
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
add a comment |
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
above comand gives errors
– Faiz Mohamed Haneef
Dec 4 '16 at 8:30
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
@FaizMohamedHaneef Have you followed the other instructions on the Ubuntu 2.6 install page (in particular setting up the apt sources): docs.mongodb.com/v2.6/tutorial/install-mongodb-on-ubuntu/…? 3.0 has different repo paths.
– Stennie
Dec 4 '16 at 8:33
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
yes. the above steps lead to same error (fresh install)
– Faiz Mohamed Haneef
Dec 4 '16 at 9:06
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f818113%2finstall-specific-mongodb-in-ubuntu-16-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu There is also a link on the page on how to install an older version (3.0).
– jftuga
Dec 1 '16 at 13:57