Skip to content

DOCS-6835: Fix 3.0 install instructions #2489

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ action:
Create the list file using the following command:
language: sh
code: |
echo "deb http://repo.mongodb.com/apt/debian wheezy/mongodb-enterprise/stable main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
echo "deb http://repo.mongodb.com/apt/debian wheezy/mongodb-enterprise/3.0 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
- pre: |
If you'd like to install MongoDB Enterprise packages from a
particular :ref:`release series <release-version-numbers>`, such as
Expand Down
10 changes: 5 additions & 5 deletions source/includes/steps-install-mongodb-enterprise-on-red-hat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ pre: |
Create an ``/etc/yum.repos.d/mongodb-enterprise.repo`` file so that
you can install MongoDB enterprise directly, using ``yum``.
action:
- heading: For the *latest* stable release of MongoDB Enterprise
- heading: For the latest 3.0 release of MongoDB Enterprise
pre: |
Use the following repository file:
language: cfg
code: |
[mongodb-enterprise]
name=MongoDB Enterprise Repository
baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/stable/$basearch/
baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/3.0/$basearch/
gpgcheck=0
enabled=1
- heading: For specific version of MongoDB Enterprise
- heading: For a specific version of MongoDB Enterprise
pre: |
To install
MongoDB Enterprise packages from a specific :ref:`release
Expand All @@ -41,10 +41,10 @@ title: Install the MongoDB Enterprise packages and associated tools.
ref: install
stepnum: 2
pre: |
You can install either the latest stable version of MongoDB Enterprise or a
You can install either the latest 3.0 release of MongoDB Enterprise or a
specific version of MongoDB Enterprise.
action:
pre: "To install the latest stable version of MongoDB Enterprise, issue the following command:"
pre: "To install the latest 3.0 release of MongoDB Enterprise, issue the following command:"
language: sh
code: |
sudo yum install -y mongodb-enterprise
Expand Down
6 changes: 3 additions & 3 deletions source/includes/steps-install-mongodb-enterprise-on-suse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ pre: |
Add the repository so that you can install MongoDB using ``zypper``.
action:
- pre: |
Use the following command to specify the latest stable release of MongoDB.
Use the following command to specify the 3.0 release of MongoDB.
language: sh
code: |
sudo zypper addrepo --no-gpgcheck https://repo.mongodb.com/zypper/suse/11/mongodb-enterprise/stable/x86_64/ mongodb
sudo zypper addrepo --no-gpgcheck https://repo.mongodb.com/zypper/suse/11/mongodb-enterprise/3.0/x86_64/ mongodb
- pre: |
If you'd like to install MongoDB packages from a previous :ref:`release
series <release-version-numbers>`, such as 2.6, you can
Expand All @@ -27,7 +27,7 @@ pre: |
release or a previous one. This step provides the commands for both.
action:
- pre: |
To install the latest stable version of MongoDB, issue the following
To install the 3.0 release of MongoDB, issue the following
command:
language: sh
code: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ action:

.. code-block:: sh

echo "deb http://repo.mongodb.com/apt/ubuntu precise/mongodb-enterprise/stable multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
echo "deb http://repo.mongodb.com/apt/ubuntu precise/mongodb-enterprise/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list

Ubuntu 14.04

.. code-block:: sh

echo "deb http://repo.mongodb.com/apt/ubuntu trusty/mongodb-enterprise/stable multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
echo "deb http://repo.mongodb.com/apt/ubuntu trusty/mongodb-enterprise/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list

- pre: |
If you'd like to install MongoDB Enterprise packages from a
Expand Down