mongocli Atlas clusters criar
Nesta página
Esta versão da documentação foi arquivada e não é mais suportada. Consulte adocumentação atual do para saber como atualizar sua versão do 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.
Sintaxe
mongocli atlas clusters create [name] [options]
argumentos
Nome | Tipo | Obrigatório | Descrição |
---|---|---|---|
name | string | false | Name of the cluster. The cluster name cannot be changed after the cluster is created. Cluster name can contain ASCII letters, numbers, and hyphen. |
Opções
Nome | Tipo | Obrigatório | Descrição |
---|---|---|---|
--backup | false | If true, enables Continuous Cloud Backup for your cluster. | |
--biConnector | false | If true, enables BI Connector for Atlas on the cluster. | |
--diskSizeGB | float | false | Capacity, in gigabytes, of the host’s root volume. (default 2) |
-f, --file | string | false | Nome do arquivo a ser usado, arquivo opcional com uma configuração de cluster json. |
-h, --help | false | ajuda para criar | |
--mdbVersion | string | false | MongoDB version of the cluster to deploy. (default "4.4") |
-m, --members | int | false | Number of members in the replica set. (default 3) |
-o, --output | string | false | Output format. Valid values: json|json-path|go-template|go-template-file |
--projectId | string | false | ID do projeto a ser usado. Substitui as configurações do arquivo de configuração ou da variável de ambiente. |
--provider | string | false | Nome do seu provedor de serviços de nuvem. Valores válidos: AWS|AZURE|GCP. |
-r, --region | string | false | Localização física do cluster MongoDB . Para obter uma lista completa das regiões do Azure compatíveis, consulte: https://mongodb.com/pt-br/docs/atlas/reference/amazon-aws/#amazon-aws Para obter uma lista completa das regiões do Azure compatíveis, consulte: https: //mongodb.com/pt-br/docs/atlas/reference/microsoft-azure/#microsoft-azure Para obter uma lista completa de regiões GCP compatíveis, consulte: https://mongodb.com/pt-br/docs/atlas /reference/google-gcp/#google-gcp |
-s, --shards | int | false | Number of shards in the cluster. (default 1) |
--tier | string | false | Camada para cada servidor que contém dados no cluster. (padrão "M2") |
--type | string | false | Type of the cluster that you want to create. Valid values: REPLICASET|SHARDED. (default "REPLICASET") |
Opções herdadas
Nome | Tipo | Obrigatório | Descrição |
---|---|---|---|
-P, --profile | string | false | Perfil a ser usado no arquivo de configuração. |
Exemplos
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>
Gerado automaticamente pela MongoDB CLI em 29-Jun-2021