网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
AWS IAM Options:
–awsIamSessionToken arg AWS Session Token for temporary
credentials
TLS Options:
–tls use TLS for all connections
–tlsCertificateKeyFile arg PEM certificate/key file for TLS
–tlsCertificateKeyFilePassword arg Password for key in PEM file for TLS
–tlsCAFile arg Certificate Authority file for TLS
–tlsCRLFile arg Certificate Revocation List file for TLS
–tlsAllowInvalidHostnames Allow connections to servers with
non-matching hostnames
–tlsAllowInvalidCertificates Allow connections to servers with
invalid certificates
–tlsFIPSMode Activate FIPS 140-2 mode at startup
–tlsDisabledProtocols arg Comma separated list of TLS protocols to
disable [TLS1_0,TLS1_1,TLS1_2]
Authentication Options:
-u [ --username ] arg username for authentication
-p [ --password ] arg password for authentication
–authenticationDatabase arg user source (defaults to dbname)
–authenticationMechanism arg authentication mechanism
–gssapiServiceName arg (=mongodb) Service name to use when authenticating
using GSSAPI/Kerberos
–gssapiHostName arg Remote host name to use for purpose of
GSSAPI/Kerberos authentication
file names: a list of files to run. files have to end in .js and will exit after unless --shell is specified
[root@localhost mongodb]#
>
> 可选参数如下
>
>
>
mongo -u -p --host --port
| 参数 | 说明 |
| --- | --- |
| –port | 端口号, 未指定为默认端口 `27017` |
| -u / -username | 用户名 |
| -p / -password | 密码 |
| -authenticationDatabase | 认证数据库 |
>
> 本地客户端可直接mongo 启动
>
>
>
[root@localhost mongodb]# mongo
![](https://img-blog.csdnimg.cn/img_convert/94e209707a34fcf1d54100800fa5209e.png)
### Mongo Shell 常用命令
#### 数据库常用命令
##### show dbs / show databases 命令
###### 概念
显示数据库列表
###### 命令应用
show dbs;
admin 0.000GB
config 0.000GB
local 0.000GB
![](https://img-blog.csdnimg.cn/img_convert/2baeecc364ab5ffe6d15ede3aac1f462.png)
##### use 数据库名 命令
###### 概念
切换数据库,数据库不存在时会自动创建
###### 命令应用
show dbs;
admin 0.000GB
config 0.000GB
local 0.000GB
![](https://img-blog.csdnimg.cn/img_convert/2baeecc364ab5ffe6d15ede3aac1f462.png)
##### db.dropDatabase() 命令
###### 概念
删除集合
###### 命令应用
db.emp.drop()
true
show collections
![](https://img-blog.csdnimg.cn/img_convert/908ac2b997547158e24f8f7a946afc46.png)
#### 集合常见操作
##### show collections / show tables 查看集合命令
###### 概念
查询当前数据库的集合列表数据
###### 命令应用
show dbs
admin 0.000GB
config 0.000GB
local 0.000GB
use test
switched to db test
db.emp.insert({i:1})
WriteResult({ “nInserted” : 1 })
show collections
emp
![](https://img-blog.csdnimg.cn/img_convert/1da93663d0e59b85f71a7e0b9d8b2810.png)
##### db.collections(集合名).stats() 查看集合详情命令
###### 概念
查看集合详情
###### 命令应用
db.emp.stats()
{
“ns” : “test.emp”,
“size” : 33,
“count” : 1,
“avgObjSize” : 33,
“storageSize” : 20480,
“freeStorageSize” : 0,
“capped” : false,
“wiredTiger” : {
“metadata” : {
“formatVersion” : 1
},
…
“scaleFactor” : 1,
“ok” : 1
}
![](https://img-blog.csdnimg.cn/img_convert/46549b73b7a40046cf6d7fb1a657996d.png)
##### db.collections(集合名).drop() 删除集合 命令
###### 概念
删除集合
###### 命令应用
db.emp.drop()
true
show collections
![](https://img-blog.csdnimg.cn/img_convert/908ac2b997547158e24f8f7a946afc46.png)
#### 用户角色命令
##### show roles 查看角色列表命令
###### 概念
查看角色列表
###### 命令应用
show roles
{
“role” : “dbAdmin”,
“db” : “test”,
“isBuiltin” : true,
“roles” : [ ],
“inheritedRoles” : [ ]
}
{
“role” : “dbOwner”,
“db” : “test”,
“isBuiltin” : true,
“roles” : [ ],
“inheritedRoles” : [ ]
}
{
“role” : “enableSharding”,
“db” : “test”,
“isBuiltin” : true,
“roles” : [ ],
“inheritedRoles” : [ ]
}
{
“role” : “read”,
“db” : “test”,
“isBuiltin” : true,
“roles” : [ ],
“inheritedRoles” : [ ]
}
{
“role” : “readWrite”,
“db” : “test”,
“isBuiltin” : true,
“roles” : [ ],
“inheritedRoles” : [ ]
}
{
“role” : “userAdmin”,
“db” : “test”,
“isBuiltin” : true,
“roles” : [ ],
“inheritedRoles” : [ ]
}
![](https://img-blog.csdnimg.cn/img_convert/be954da6bbde196b9f27346a1b9ec28a.png)
##### db.createUser(用户信息) 创建用户 命令
###### 概念
创建用户
###### 命令格式
>
> db.createUser({user:“用户名”,pwd:“名称”,roles:[“角色”]})
>
>
>
![img](https://img-blog.csdnimg.cn/img_convert/b62d2110f0df248daab9c27e3f0e9a82.png)
![img](https://img-blog.csdnimg.cn/img_convert/cd8eb4283c07f36dbb47c20ec5d6eb35.png)
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化的资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618636735)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**
色”]})
>
>
>
[外链图片转存中...(img-ik6eakFp-1715878698030)]
[外链图片转存中...(img-HKWyQzet-1715878698030)]
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化的资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618636735)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**