getCmdLineOpts
getCmdLineOpts
The
getCmdLineOpts
command returns a document containing command line options used to start the givenmongod
ormongos
. RungetCmdLineOpts
in theadmin
database.
호환성
이 명령은 다음 환경에서 호스팅되는 배포에서 사용할 수 있습니다.
MongoDB Atlas: 클라우드에서의 MongoDB 배포를 위한 완전 관리형 서비스
참고
이 명령은 모든 MongoDB Atlas 클러스터에서 지원됩니다. 모든 명령에 대한 Atlas 지원에 관해 자세히 알아보려면 지원되지 않는 명령을 참조하십시오.
MongoDB Enterprise: MongoDB의 구독 기반 자체 관리 버전
MongoDB Community: MongoDB의 소스 사용 가능 무료 자체 관리 버전
구문
명령은 다음과 같은 구문을 가집니다:
db.adminCommand( { getCmdLineOpts: 1 } )
This command returns a document with two fields, argv
and
parsed
. The argv
field contains an array with each item from
the command string used to invoke mongod
or
mongos
. The document in the parsed
field includes all
runtime options, including those parsed from the command line and
those specified in the configuration file, if specified.
Consider the following example output of
getCmdLineOpts
:
{ "argv" : [ "/usr/bin/mongod", "--config", "/etc/mongod.conf" ], "parsed" : { "config" : "/etc/mongod.conf", "net" : { "bindIp" : "127.0.0.1", "port" : 27017 }, "processManagement" : { "fork" : true }, "storage" : { "dbPath" : "/data/db" }, "systemLog" : { "destination" : "file", "logAppend" : true, "path" : "/var/log/mongodb/mongod.log" } }, "ok" : 1 }