-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathtutorial.txt
146 lines (116 loc) · 5 KB
/
tutorial.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.. _tutorial:
.. _tutorials:
:orphan:
=================
MongoDB Tutorials
=================
.. meta::
:description: Explore various MongoDB tutorials covering installation, administration, sharding, security, and data modeling patterns.
This page lists the tutorials available as part of the :doc:`MongoDB
Manual <contents>`. In addition to these tutorial in the manual,
MongoDB provides :ref:`Getting Started Guides <getting-started>` in
various driver editions. If there is a process or pattern that you
would like to see included here, please open a :issue:`Jira Case
<DOCS>`.
Installation
------------
- :doc:`/tutorial/install-mongodb-on-red-hat`
- :doc:`/tutorial/install-mongodb-on-debian`
- :doc:`/tutorial/install-mongodb-on-ubuntu`
- :doc:`/tutorial/install-mongodb-on-amazon`
- :doc:`/tutorial/install-mongodb-on-suse`
- :doc:`/tutorial/install-mongodb-on-os-x`
- :doc:`/tutorial/install-mongodb-on-windows`
.. _administration-tutorials:
.. _tutorials-administration:
.. _tutorial-administration:
Administration
--------------
Replica Sets
~~~~~~~~~~~~
- :doc:`/tutorial/deploy-replica-set`
- :doc:`/tutorial/convert-standalone-to-replica-set`
- :doc:`/tutorial/expand-replica-set`
- :doc:`/tutorial/remove-replica-set-member`
- :doc:`/tutorial/replace-replica-set-member`
- :doc:`/tutorial/adjust-replica-set-member-priority`
- :doc:`/tutorial/resync-replica-set-member`
- :doc:`/tutorial/deploy-geographically-distributed-replica-set`
- :doc:`/tutorial/change-oplog-size`
- :doc:`/tutorial/force-member-to-be-primary`
- :doc:`/tutorial/change-hostnames-in-a-replica-set`
- :doc:`/tutorial/add-replica-set-arbiter`
- :doc:`/tutorial/convert-secondary-into-arbiter`
- :doc:`/tutorial/configure-replica-set-secondary-sync-target`
- :doc:`/tutorial/configure-a-delayed-replica-set-member`
- :doc:`/tutorial/configure-a-hidden-replica-set-member`
- :doc:`/tutorial/configure-a-non-voting-replica-set-member`
- :doc:`/tutorial/configure-secondary-only-replica-set-member`
- :doc:`/tutorial/configure-replica-set-tag-sets`
- :doc:`/tutorial/manage-chained-replication`
- :doc:`/tutorial/reconfigure-replica-set-with-unavailable-members`
- :doc:`/tutorial/recover-data-following-unexpected-shutdown`
- :doc:`/tutorial/troubleshoot-replica-sets`
- :doc:`/tutorial/rename-unsharded-replica-set`
Sharding
~~~~~~~~
- :doc:`/tutorial/deploy-shard-cluster`
- :doc:`/tutorial/convert-replica-set-to-replicated-shard-cluster`
- :doc:`/tutorial/add-shards-to-shard-cluster`
- :doc:`/tutorial/remove-shards-from-cluster`
- :doc:`/tutorial/migrate-chunks-in-sharded-cluster`
- :doc:`/tutorial/replace-config-server`
- :doc:`/tutorial/migrate-sharded-cluster-to-new-hardware`
- :doc:`/tutorial/backup-sharded-cluster-metadata`
- :doc:`/tutorial/backup-sharded-cluster-with-filesystem-snapshots`
- :doc:`/tutorial/backup-sharded-cluster-with-database-dumps`
- :doc:`/tutorial/restore-sharded-cluster`
- :doc:`/tutorial/schedule-backup-window-for-sharded-clusters`
- :doc:`/tutorial/manage-shard-zone`
Basic Operations
~~~~~~~~~~~~~~~~
- :doc:`/tutorial/use-database-commands`
- :doc:`/tutorial/recover-data-following-unexpected-shutdown`
- :doc:`/tutorial/expire-data`
- :doc:`/tutorial/manage-the-database-profiler`
- :doc:`/tutorial/rotate-log-files`
- :doc:`/tutorial/manage-mongodb-processes`
- :doc:`/tutorial/backup-and-restore-tools`
- :doc:`/tutorial/backup-with-filesystem-snapshots`
Security
~~~~~~~~
- :doc:`/tutorial/configure-linux-iptables-firewall`
- :doc:`/tutorial/configure-windows-netsh-firewall`
- :doc:`/tutorial/enable-authentication`
- :doc:`/tutorial/manage-users-and-roles`
- :doc:`/tutorial/control-access-to-mongodb-with-kerberos-authentication`
- :doc:`/tutorial/create-a-vulnerability-report`
.. _tutorials-development-patterns:
.. _tutorial-development-patterns:
Development Patterns
--------------------
- :doc:`/tutorial/aggregation-zip-code-data-set`
- :doc:`/tutorial/aggregation-with-user-preference-data`
- :doc:`/tutorial/model-data-for-keyword-search`
- :doc:`/tutorial/perform-incremental-map-reduce`
- :doc:`/tutorial/troubleshoot-map-function`
- :doc:`/tutorial/troubleshoot-reduce-function`
- :doc:`/tutorial/store-javascript-function-on-server`
- :doc:`/tutorial/connection-pool-performance-tuning`
.. _tutorials-text-search:
.. _tutorial-text-search:
$text Patterns
--------------
- :doc:`/core/indexes/index-types/index-text/specify-text-index-language`
- :ref:`limit-entries-scanned`
Data Modeling Patterns
----------------------
- :doc:`/tutorial/model-embedded-one-to-one-relationships-between-documents`
- :doc:`/tutorial/model-embedded-one-to-many-relationships-between-documents`
- :doc:`/tutorial/model-embedded-many-to-many-relationships-between-documents`
- :doc:`/tutorial/model-referenced-one-to-many-relationships-between-documents`
- :doc:`/tutorial/model-data-for-atomic-operations`
- :doc:`/tutorial/model-tree-structures-with-parent-references`
- :doc:`/tutorial/model-tree-structures-with-child-references`
- :doc:`/tutorial/model-tree-structures-with-materialized-paths`
- :doc:`/tutorial/model-tree-structures-with-nested-sets`