Skip to content

Commit cea00ca

Browse files
committed
install update for rc0
1 parent ffab55f commit cea00ca

12 files changed

+42
-42
lines changed

source/includes/steps-create-manually-windows-service-for-mongodb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pre: |
3030
# don't wrap the text above to avoid breaking something in primer
3131
action:
3232
pre: |
33-
For example, create a file at ``C:\Program Files\MongoDB\Server\3.4\mongod.cfg`` that specifies both
33+
For example, create a file at ``C:\Program Files\MongoDB\Server\3.6\mongod.cfg`` that specifies both
3434
:setting:`systemLog.path` and :setting:`storage.dbPath`:
3535
language: yaml
3636
code: |
@@ -47,7 +47,7 @@ action:
4747
- pre: "Create the MongoDB service."
4848
language: powershell
4949
code: |
50-
sc.exe create MongoDB binPath= "\"C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe\" --service --config=\"C:\Program Files\MongoDB\Server\3.4\mongod.cfg\"" DisplayName= "MongoDB" start= "auto"
50+
sc.exe create MongoDB binPath= "\"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe\" --service --config=\"C:\Program Files\MongoDB\Server\3.6\mongod.cfg\"" DisplayName= "MongoDB" start= "auto"
5151
post: |
5252
``sc.exe`` requires a space between "=" and the configuration values
5353
(eg "binPath= "), and a "\\" to escape double quotes.

source/includes/steps-getting-started.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ content: |
162162
.. class:: copyable-code
163163
.. code-block:: sh
164164
165-
"C:\Program Files\MongoDB\Server\3.4\bin\mongo.exe" "mongodb://user123:[email protected]:27017,gettingstarted-shard-00-01-hyjsm.mongodb.net:27017,gettingstarted-shard-00-02-hyjsm.mongodb.net:27017/test?ssl=true&replicaSet=GettingStarted-shard-0&authSource=admin"
165+
"C:\Program Files\MongoDB\Server\3.6\bin\mongo.exe" "mongodb://user123:[email protected]:27017,gettingstarted-shard-00-01-hyjsm.mongodb.net:27017,gettingstarted-shard-00-02-hyjsm.mongodb.net:27017/test?ssl=true&replicaSet=GettingStarted-shard-0&authSource=admin"
166166
167167
- id: compass
168168
name: Compass

source/includes/steps-install-mongodb-enterprise-on-amazon.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ pre: |
55
Create an ``/etc/yum.repos.d/mongodb-enterprise.repo`` file so that
66
you can install MongoDB enterprise directly, using ``yum``.
77
action:
8-
- heading: For the *latest* stable release of MongoDB Enterprise
8+
- heading: For the 3.6 release candidate version of MongoDB Enterprise
99
pre: |
1010
Use the following repository file:
1111
language: cfg
1212
code: |
1313
[mongodb-enterprise]
1414
name=MongoDB Enterprise Repository
15-
baseurl=https://repo.mongodb.com/yum/amazon/2013.03/mongodb-enterprise/3.4/$basearch/
15+
baseurl=https://repo.mongodb.com/yum/amazon/2013.03/mongodb-enterprise/testing/$basearch/
1616
gpgcheck=1
1717
enabled=1
18-
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc
18+
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
1919
- pre: |
2020
``.repo`` files for each release can also be found `in the repository itself <https://repo.mongodb.com/yum/amazon/>`_.
2121
Remember that odd-numbered minor release versions (e.g. 2.5) are development versions and are unsuitable

source/includes/steps-install-mongodb-enterprise-on-debian.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ action:
1414
Debian 7 "Wheezy"
1515
.. code-block:: sh
1616
17-
echo "deb http://repo.mongodb.com/apt/debian wheezy/mongodb-enterprise/3.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
17+
echo "deb http://repo.mongodb.com/apt/debian wheezy/mongodb-enterprise/testing main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
1818
1919
Debian 8 "Jessie"
2020
.. code-block:: sh
2121
22-
echo "deb http://repo.mongodb.com/apt/debian jessie/mongodb-enterprise/3.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
22+
echo "deb http://repo.mongodb.com/apt/debian jessie/mongodb-enterprise/testing main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
2323
- pre: |
2424
If you'd like to install MongoDB Enterprise packages from a
2525
particular :ref:`release series <release-version-numbers>`, such as

source/includes/steps-install-mongodb-enterprise-on-red-hat.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ pre: |
55
Create an ``/etc/yum.repos.d/mongodb-enterprise.repo`` file so that
66
you can install MongoDB enterprise directly, using ``yum``.
77
action:
8-
- heading: For the *latest* stable release of MongoDB Enterprise
8+
- heading: For the 3.6 release candidate version of MongoDB Enterprise
99
pre: |
1010
Use the following repository file:
1111
language: cfg
1212
code: |
1313
[mongodb-enterprise]
1414
name=MongoDB Enterprise Repository
15-
baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/3.4/$basearch/
15+
baseurl=https://repo.mongodb.com/yum/redhat/$releasever/mongodb-enterprise/testing/$basearch/
1616
gpgcheck=1
1717
enabled=1
18-
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc
18+
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
1919
- pre: |
2020
``.repo`` files for each release can also be found `in the repository itself <https://repo.mongodb.com/yum/redhat/>`_.
2121
Remember that odd-numbered minor release versions (e.g. 2.5) are development versions and are unsuitable
@@ -28,7 +28,7 @@ stepnum: 2
2828
# You can install either the latest stable version of MongoDB Enterprise or a
2929
# specific version of MongoDB Enterprise.
3030
action:
31-
pre: "To install the latest stable version of MongoDB Enterprise, issue the following command:"
31+
pre: "To install MongoDB Enterprise, issue the following command:"
3232
language: sh
3333
code: |
3434
sudo yum install -y mongodb-enterprise

source/includes/steps-install-mongodb-enterprise-on-suse.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ action:
1616
.. class:: copyable-code
1717
.. code-block:: sh
1818
19-
sudo zypper addrepo --gpgcheck "https://repo.mongodb.com/zypper/suse/11/mongodb-enterprise/3.4/x86_64/" mongodb
19+
sudo zypper addrepo --gpgcheck "https://repo.mongodb.com/zypper/suse/11/mongodb-enterprise/testing/x86_64/" mongodb
2020
2121
SUSE 12
2222
.. class:: copyable-code
2323
.. code-block:: sh
2424
25-
sudo zypper addrepo --gpgcheck "https://repo.mongodb.com/zypper/suse/12/mongodb-enterprise/3.4/x86_64/" mongodb
25+
sudo zypper addrepo --gpgcheck "https://repo.mongodb.com/zypper/suse/12/mongodb-enterprise/testing/x86_64/" mongodb
2626
- pre: |
2727
If you'd like to install MongoDB packages from a previous :ref:`release
2828
series <release-version-numbers>`, such as 2.6, you can
@@ -42,7 +42,7 @@ ref: install
4242
# release or a previous one. This step provides the commands for both.
4343
action:
4444
- pre: |
45-
To install the latest stable version of MongoDB, issue the following
45+
To install the 3.6 release candidate version of MongoDB, issue the following
4646
command:
4747
language: sh
4848
code: |

source/includes/steps-install-mongodb-enterprise-on-ubuntu.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ action:
1717
.. class:: copyable-code
1818
.. code-block:: sh
1919
20-
echo "deb [ arch=amd64 ] http://repo.mongodb.com/apt/ubuntu precise/mongodb-enterprise/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
20+
echo "deb [ arch=amd64 ] http://repo.mongodb.com/apt/ubuntu precise/mongodb-enterprise/testing multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
2121
2222
Ubuntu 14.04
2323
2424
.. class:: copyable-code
2525
.. code-block:: sh
2626
27-
echo "deb [ arch=amd64 ] http://repo.mongodb.com/apt/ubuntu trusty/mongodb-enterprise/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
27+
echo "deb [ arch=amd64 ] http://repo.mongodb.com/apt/ubuntu trusty/mongodb-enterprise/testing multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
2828
2929
Ubuntu 16.04
3030
3131
.. class:: copyable-code
3232
.. code-block:: sh
3333
34-
echo "deb [ arch=amd64,arm64,ppc64el,s390x ] http://repo.mongodb.com/apt/ubuntu xenial/mongodb-enterprise/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
34+
echo "deb [ arch=amd64,arm64,ppc64el,s390x ] http://repo.mongodb.com/apt/ubuntu xenial/mongodb-enterprise/testing multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
3535
3636
- pre: |
3737
If you'd like to install MongoDB Enterprise packages from a
@@ -57,7 +57,7 @@ ref: install
5757
# specific version of MongoDB.
5858
action:
5959
- heading:
60-
text: Install the latest stable version of MongoDB Enterprise.
60+
text: Install the 3.6 release candidate version of MongoDB Enterprise.
6161
character: "'"
6262
pre: "Issue the following command:"
6363
language: sh

source/includes/steps-install-mongodb-on-debian.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source:
33
file: steps-install-mongodb-on-ubuntu.yaml
44
ref: import-key
55
---
6-
title: Create a ``/etc/apt/sources.list.d/mongodb-org-3.4.list`` file for MongoDB.
6+
title: Create a ``/etc/apt/sources.list.d/mongodb-org-3.6.list`` file for MongoDB.
77
stepnum: 2
88
ref: sources-list
99
action:
@@ -14,12 +14,12 @@ action:
1414
Debian 7 "Wheezy"
1515
.. code-block:: sh
1616
17-
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
17+
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/testing main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
1818
1919
Debian 8 "Jessie"
2020
.. code-block:: sh
2121
22-
echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
22+
echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/testing main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
2323
2424
Currently packages are only available for Debian 7 "Wheezy" and Debian 8 "Jessie".
2525
---

source/includes/steps-install-mongodb-on-red-hat.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ title: Configure the package management system (``yum``).
22
stepnum: 1
33
ref: config-yum
44
pre: |
5-
Create a ``/etc/yum.repos.d/mongodb-org-3.4.repo`` file so that
5+
Create a ``/etc/yum.repos.d/mongodb-org-3.6.repo`` file so that
66
you can install MongoDB directly, using ``yum``.
77
88
.. versionchanged:: 3.0
99
1010
.. include:: /includes/extracts/fact-3.0-linux-package-repo-tutorial.rst
1111
1212
action:
13-
- heading: For the *latest* stable release of MongoDB
13+
- heading: For the release candidate of MongoDB 3.6
1414
pre: |
1515
Use the following repository file:
1616
copyable: true
1717
language: cfg
1818
code: |
19-
[mongodb-org-3.4]
19+
[mongodb-org-3.6]
2020
name=MongoDB Repository
21-
baseurl=https://repo.mongodb.org/yum/{{distro_name}}/{{distro_release}}/mongodb-org/3.4/x86_64/
21+
baseurl=https://repo.mongodb.org/yum/{{distro_name}}/{{distro_release}}/mongodb-org/testing/x86_64/
2222
gpgcheck=1
2323
enabled=1
24-
gpgkey=https://www.mongodb.org/static/pgp/server-3.4.asc
24+
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
2525
- heading: For versions of MongoDB *earlier* than 3.0
2626
pre: |
2727
To install the packages from an earlier :ref:`release series

source/includes/steps-install-mongodb-on-suse.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ref: import-key
44
action:
55
language: sh
66
code: |
7-
sudo rpm --import https://www.mongodb.org/static/pgp/server-3.4.asc
7+
sudo rpm --import https://www.mongodb.org/static/pgp/server-3.6.asc
88
---
99
title: Configure the package management system (``zypper``).
1010
stepnum: 2
@@ -17,23 +17,23 @@ pre: |
1717
.. include:: /includes/extracts/fact-3.0-linux-package-repo-tutorial.rst
1818
1919
action:
20-
- heading: For the *latest* stable release of MongoDB
20+
- heading: For the release candidate of MongoDB 3.6
2121
pre: |
2222
Run the command appropriate for your version of SUSE:
2323
2424
SUSE 11
2525
.. class:: copyable-code
2626
.. code-block:: sh
2727
28-
sudo zypper addrepo --gpgcheck "https://repo.mongodb.org/zypper/suse/11/mongodb-org/3.4/x86_64/" mongodb
28+
sudo zypper addrepo --gpgcheck "https://repo.mongodb.org/zypper/suse/11/mongodb-org/testing/x86_64/" mongodb
2929
3030
SUSE 12
3131
.. class:: copyable-code
3232
.. code-block:: sh
3333
34-
sudo zypper addrepo --gpgcheck "https://repo.mongodb.org/zypper/suse/12/mongodb-org/3.4/x86_64/" mongodb
34+
sudo zypper addrepo --gpgcheck "https://repo.mongodb.org/zypper/suse/12/mongodb-org/testing/x86_64/" mongodb
3535
36-
- heading: For versions of MongoDB *earlier* than 3.4
36+
- heading: For versions of MongoDB *earlier* than 3.6
3737
pre: |
3838
To install MongoDB packages from a previous :ref:`release
3939
series <release-version-numbers>`, such as 3.0, you can

source/includes/steps-install-mongodb-on-ubuntu.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ action:
66
The Ubuntu package management tools (i.e. ``dpkg`` and ``apt``) ensure
77
package consistency and authenticity by requiring that distributors
88
sign packages with GPG keys. Issue the following command to import the
9-
`MongoDB public GPG Key <https://www.mongodb.org/static/pgp/server-3.4.asc>`_:
9+
`MongoDB public GPG Key <https://www.mongodb.org/static/pgp/server-3.6.asc>`_:
1010
copyable: true
1111
language: sh
1212
code: |
@@ -17,26 +17,26 @@ stepnum: 2
1717
ref: sources-list
1818
action:
1919
pre: |
20-
Create the ``/etc/apt/sources.list.d/mongodb-org-3.4.list`` list file using
20+
Create the ``/etc/apt/sources.list.d/mongodb-org-3.6.list`` list file using
2121
the command appropriate for your version of Ubuntu:
2222
2323
Ubuntu 12.04
2424
.. class:: copyable-code
2525
.. code-block:: sh
2626
27-
echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
27+
echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/testing multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
2828
2929
Ubuntu 14.04
3030
.. class:: copyable-code
3131
.. code-block:: sh
3232
33-
echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
33+
echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/testing multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
3434
3535
Ubuntu 16.04
3636
.. class:: copyable-code
3737
.. code-block:: sh
3838
39-
echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
39+
echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/testing multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
4040
---
4141
title: Reload local package database.
4242
stepnum: 3

source/includes/steps-run-mongodb-on-windows.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ action:
1919
copyable: true
2020
language: powershell
2121
code: |
22-
"C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe" --dbpath d:\test\mongodb\data
22+
"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe" --dbpath d:\test\mongodb\data
2323
- pre: |
2424
If your path includes spaces, enclose the entire path in double
2525
quotes, for example:
2626
copyable: true
2727
language: powershell
2828
code: |
29-
"C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe" --dbpath "d:\test\mongo db data"
29+
"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe" --dbpath "d:\test\mongo db data"
3030
post: |
3131
You may also specify the ``dbpath`` in a :doc:`configuration file
3232
</reference/configuration-options>`.
@@ -41,15 +41,15 @@ action:
4141
copyable: true
4242
language: powershell
4343
code: |
44-
"C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe"
44+
"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe"
4545
post: |
4646
This starts the main MongoDB database process. The ``waiting for
4747
connections`` message in the console output indicates that the
4848
:program:`mongod.exe` process is running successfully.
4949
5050
Depending on the security level of your system, Windows may pop up a
5151
:guilabel:`Security Alert` dialog box about blocking "some features" of
52-
``C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe`` from communicating
52+
``C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe`` from communicating
5353
on networks. All users should select ``Private Networks, such as my home or
5454
work network`` and click ``Allow access``. For additional information on
5555
security and MongoDB, please see the :doc:`Security Documentation </security>`.
@@ -64,7 +64,7 @@ action:
6464
copyable: true
6565
language: powershell
6666
code: |
67-
"C:\Program Files\MongoDB\Server\3.4\bin\mongo.exe
67+
"C:\Program Files\MongoDB\Server\3.6\bin\mongo.exe
6868
post: |
6969
If you want to develop applications using .NET, see the documentation
7070
of :ecosystem:`C# and MongoDB </drivers/csharp>` for more information.

0 commit comments

Comments
 (0)