mongocli Atlas cluster 생성
이 버전의 문서는 보관되어 더 이상 지원되지 않습니다. 최신 문서 를 참조하여 MongoCLI 버전을 업그레이드 하는 방법을 학습 보세요.
Create a MongoDB cluster for your project.
You can create MongoDB clusters using this command. To quickest way to get started is to just specify a name for your cluster and cloud provider and region to deploy, this will create a 3 member replica set with the latest available mongodb server version available. Some of the cluster configuration options are available via flags but for full control of your deployment you can provide a config file.
구문
mongocli atlas clusters create [name] [options]
arguments
이름 | 유형 | 필수 사항 | 설명 |
---|---|---|---|
이름 | 문자열 | 거짓 | Name of the cluster. The cluster name cannot be changed after the cluster is created. Cluster name can contain ASCII letters, numbers, and hyphen. |
옵션
이름 | 유형 | 필수 사항 | 설명 |
---|---|---|---|
--backup | 거짓 | If true, enables Continuous Cloud Backup for your cluster. | |
--biConnector | 거짓 | If true, enables BI Connector for Atlas on the cluster. | |
--diskSizeGB | float | 거짓 | Capacity, in gigabytes, of the host’s root volume. (default 2) |
-f, --file | 문자열 | 거짓 | Filename to use, optional file with a json cluster configuration. |
-h, --help | 거짓 | 만들기 도움말 | |
--mdbVersion | 문자열 | 거짓 | MongoDB version of the cluster to deploy. (default "4.4") |
-m, --members | int | 거짓 | Number of members in the replica set. (default 3) |
-o, --output | 문자열 | 거짓 | Output format. Valid values: json|json-path|go-template|go-template-file |
--projectId | 문자열 | 거짓 | 사용할 프로젝트 ID 입니다. 구성 파일 또는 환경 변수 설정을 재정의합니다. |
--provider | 문자열 | 거짓 | Name of your cloud service provider. Valid values: AWS|AZURE|GCP. |
-r, --region | 문자열 | 거짓 | Physical location of your MongoDB cluster. For a complete list of supported AWS regions, see: https://mongodb.com/ko-kr/docs/atlas/reference/amazon-aws/#amazon-aws For a complete list of supported Azure regions, see: https://mongodb.com/ko-kr/docs/atlas/reference/microsoft-azure/#microsoft-azure For a complete list of supported GCP regions, see: https://mongodb.com/ko-kr/docs/atlas/reference/google-gcp/#google-gcp |
-s, --shards | int | 거짓 | Number of shards in the cluster. (default 1) |
--tier | 문자열 | 거짓 | Tier for each data-bearing server in the cluster. (default "M2") |
--type | 문자열 | 거짓 | Type of the cluster that you want to create. Valid values: REPLICASET|SHARDED. (default "REPLICASET") |
상속된 옵션
이름 | 유형 | 필수 사항 | 설명 |
---|---|---|---|
-P, --profile | 문자열 | 거짓 | 구성 파일 에서 사용할 프로필입니다. |
예시
Deploy a 3 members replica set in AWS $ mongocli atlas cluster create <clusterName> --projectId <projectId> --provider AWS --region US_EAST_1 --members 3 --tier M10 --mdbVersion 4.2 --diskSizeGB 10 Deploy a 3 members replica set in AZURE $ mongocli atlas cluster create <clusterName> --projectId <projectId> --provider AZURE --region US_EAST_2 --members 3 --tier M10 --mdbVersion 4.2 --diskSizeGB 10 Deploy a 3 members replica set in GCP $ mongocli atlas cluster create <clusterName> --projectId <projectId> --provider GCP --region EASTERN_US --members 3 --tier M10 --mdbVersion 4.2 --diskSizeGB 10 Deploy a cluster from a config file $ mongocli atlas cluster create --projectId <projectId> --file <path/to/cluster.json>
29-Jun-2021에 MongoDB CLI 에 의해 자동 생성됩니다.