mongo db 參數詳解



工具介紹:
mongo           命令行客戶端工具。
mongod          數據庫服務程序。
mongodump       數據庫備份程序。
mongoexport     數據導出工具。
mongofiles      GridFS工具,內建的分佈式文件系統
mongoimport     數據導入工具。
mongorestore    數據庫恢復工具。
mongos          數據分片程序,支持數據的橫向擴展
mongostat           監視程序
mongosniff
 
mongod詳解:
 [root@localhost bin]./mongod --help

Allowed options:

General options:
-h [ --help ]             show this usage information
--version                 show version information
-f [ --config ] arg       configuration file specifying additional options
--port arg                specify port number
--bind_ip arg             local ip address to bind listener - all local ips
                            bound by default
-v [ --verbose ]          be more verbose (include multiple times for more
                            verbosity e.g. -vvvvv)
--dbpath arg (=/data/db/) directory for datafiles    指定數據存放目錄
--quiet                   quieter output   靜默模式
--logpath arg             file to send all output to instead of stdout   指定日誌存放目錄
--logappend               appnd to logpath instead of over-writing 指定日誌是以追加還是以覆蓋的方式寫入日誌文件
--fork                    fork server process   以創建子進程的方式運行
--cpu                     periodically show cpu and iowait utilization 週期性的顯示cpu和io的使用情況
--noauth                  run without security 無認證模式運行
--auth                    run with security 認證模式運行
--objcheck                inspect client data for validity on receipt 檢查客戶端輸入數據的有效性檢查
--quota                   enable db quota management   開始數據庫配額的管理
--quotaFiles arg          number of files allower per db, requires --quota 規定每個數據庫允許的文件數
--appsrvpath arg          root directory for the babble app server
--nocursors               diagnostic/debugging option 調試診斷選項
--nohints                 ignore query hints 忽略查詢命中率
--nohttpinterface         disable http interface 關閉http接口,默認是28017
--noscripting             disable scripting engine 關閉腳本引擎
--noprealloc              disable data file preallocation 關閉數據庫文件大小預分配
--smallfiles              use a smaller default file size 使用較小的默認文件大小
--nssize arg (=16)        .ns file size (in MB) for new databases 新數據庫ns文件的默認大小
--diaglog arg             0=off 1=W 2=R 3=both 7=W+some reads 提供的方式,是隻讀,只寫,還是讀寫都行,還是主要寫+部分的讀模式
--sysinfo                 print some diagnostic system information 打印系統診斷信息
--upgrade                 upgrade db if needed 如果需要就更新數據庫
--repair                  run repair on all dbs 修復所有的數據庫
--notablescan             do not allow table scans 不運行表掃描
--syncdelay arg (=60)     seconds between disk syncs (0 for never) 系統同步刷新磁盤的時間,默認是60s

Replication options:
--master              master mode 主複製模式
--slave               slave mode 從複製模式
--source arg          when slave: specify master as <server:port> 當爲從時,指定主的地址和端口
--only arg            when slave: specify a single database to replicate 當爲從時,指定需要從主複製的單一庫
--pairwith arg        address of server to pair with
--arbiter arg         address of arbiter server 仲裁服務器,在主主中和pair中用到
--autoresync          automatically resync if slave data is stale 自動同步從的數據
--oplogSize arg       size limit (in MB) for op log 指定操作日誌的大小
--opIdMem arg         size limit (in bytes) for in memory storage of op ids指定存儲操作日誌的內存大小

Sharding options:
--configsvr           declare this is a config db of a cluster 指定shard中的配置服務器
--shardsvr            declare this is a shard db of a cluster 指定shard服務器


 

使用詳解:

在啓動mongoDB之前,我們必須新建一個存放mongoDB數據和日誌的目錄


 [root@localhost bin]# ./mongod --dbpath=/data/mongo/bestlovesky --logpath=/data/log/ --logappend &
 

 

現在mongodb啓動了,檢查是否啓動的方法:
 [root@localhost bin]# ps -ef|grep mongod
root    2533 2271 0 08:21 pts/0    00:00:00 bin/mongod --dbpath=/data/mongo/bestlovesky --logpath=/data/log/ --logappend
root    2541 2271 0 08:22 pts/0    00:00:00 grep mongod
 

查看mongodb的端口是否啓動,默認是28017,在啓動服務器時,可以通過--port來指定

 [root@localhost bin]#  netstat -an -t|grep 28017
tcp        0      0 0.0.0.0:28017               0.0.0.0:*                   LISTEN
 

到此,證明mongoDB已經啓動完成

關閉的方法很簡單:
Killall mongod 或者是 kill [pid]


發佈了29 篇原創文章 · 獲贊 7 · 訪問量 12萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章