设为首页 收藏本站
查看: 648|回复: 0

[经验分享] CentOS6.5上源码安装MongoDB3.2.1-xiaoxiaot

[复制链接]

尚未签到

发表于 2018-10-25 12:19:15 | 显示全部楼层 |阅读模式
1 [root@test ~]# mongod --help  
2 Options:
  
3
  
4 General options:
  
5   -h [ --help ]           show this usage information
  
6   --version               show version information
  
7   -f [ --config ] arg        configuration file specifying
  
8                      additional options
  
9  -v [ --verbose ] [=arg(=v)]  be more verbose (include multiple times
  
10                        for more verbosity e.g. -vvvvv)
  
11   --quiet           quieter output
  
  12   --port arg      #指定mongodb服务的端口号,默认为:27017
  
13   --bind_ip arg    #在多网卡的机器上指定mongodb服务绑定到哪一个ip上
  
15   --ipv6        enable IPv6 support (disabled by
  
16               default)
  
17   --maxConns arg    #指定最大客户端连接数
  
19   --logpath arg    #指定日志文件路径,必须是一个文件,而不是目录
  
20   --syslog       log to system's syslog facility instead
  
23               of file or stdout
  
24   --syslogFacility arg     syslog facility used for mongodb syslog
  
25                   message
  
26   --logappend       #以追加的方式打印日志到--logpath参数指定的日志文件中
  
28   --logRotate arg     set the log rotation behavior
  
29                 (rename|reopen)
  
30   --timeStampFormat arg     Desired format for timestamps in log
  
31             messages. One of ctime, iso8601-utc or
  
32                                         iso8601-local 33   --pidfilepath arg                     full path to pidfile (if not set, no
  
34                                         pidfile is created) 35   --keyFile arg                         private key for cluster authentication 36   --setParameter arg                    Set a configurable parameter 37   --httpinterface                       enable http interface 38   --clusterAuthMode arg                 Authentication mode used for cluster
  
39                                         authentication. Alternatives are
  
40                                         (keyFile|sendKeyFile|sendX509|x509) 41   --nounixsocket                        disable listening on unix sockets 42   --unixSocketPrefix arg                alternative directory for UNIX domain
  
43                                         sockets (defaults to /tmp) 44   --filePermissions arg                 permissions to set on UNIX domain
  
45                                         socket file - 0700 by default 46   --fork                                #以daemon的形式运行服务进程 47   --auth                                run with security 48   --noauth                              run without security 49   --jsonp                               allow JSONP access via http (has
  
50                                         security implications) 51   --rest                                turn on simple rest api 52   --slowms arg (=100)                   value of slow for profile and console
  
53                                         log 54   --profile arg                         0=off 1=slow, 2=all 55   --cpu                                 periodically show cpu and iowait
  
56                                         utilization 57   --sysinfo                             print some diagnostic system
  
58                                         information 59   --noIndexBuildRetry                   don't retry any index builds that were  60                                         interrupted by shutdown 61   --noscripting                         disable scripting engine 62   --notablescan                         do not allow table scans 63   --shutdown                            kill a running server (for init
  
64                                         scripts) 65  66 Replication options: 67   --oplogSize arg                       size to use (in MB) for replication op
  
68                                         log. default is 5% of disk space (i.e.
  
69                                         large is good) 70  71 Master/slave options (old; use replica sets instead): 72   --master                              master mode 73   --slave                               slave mode 74   --source arg                          when slave: specify master as
  
75                                          76   --only arg                            when slave: specify a single database
  
77                                         to replicate 78   --slavedelay arg                      specify delay (in seconds) to be used
  
79                                         when applying master ops to slave 80   --autoresync                          automatically resync if slave data is
  
81                                         stale 82  83 Replica set options: 84   --replSet arg                         arg is [/] 86   --replIndexPrefetch arg               specify index prefetching behavior (if  87                                         secondary) [none|_id_only|all] 88   --enableMajorityReadConcern           enables majority readConcern 89  90 Sharding options: 91   --configsvr                           declare this is a config db of a
  
92                                         cluster; default port 27019; default
  
93                                         dir /data/configdb 94   --configsvrMode arg                   Controls what config server protocol is 95                                         in use. When set to "sccc" keeps server 96                                         in legacy SyncClusterConnection mode
  
97                                         even when the service is running as a
  
98                                         replSet 99   --shardsvr                            declare this is a shard db of a
  
100                                         cluster; default port 27018101 102 Storage options:103   --storageEngine arg                   what storage engine to use - defaults
  
104                                         to wiredTiger if no data files present105   --dbpath arg                          #指定数据目录路径107   --directoryperdb                      each database will be stored in a
  
108                                         separate directory109   --noprealloc                          disable data file preallocation - will
  
110                                         often hurt performance111   --nssize arg (=16)                    .ns file size (in MB) for new databases112   --quota                               limits each database to a certain
  
113                                         number of files (8 default)114   --quotaFiles arg                      number of files allowed per db, implies115                                         --quota116   --smallfiles                          use a smaller default file size117   --syncdelay arg (=60)                 seconds between disk syncs (0=never,
  
118                                         but not recommended)119   --upgrade                             upgrade db if needed120   --repair                              run repair on all dbs121   --repairpath arg                      root directory for repair files -
  
122                                         defaults to dbpath123   --journal                             enable journaling124   --nojournal                           disable journaling (journaling is on by125                                         default for 64 bit)126   --journalOptions arg                  journal diagnostic options127   --journalCommitInterval arg           how often to group/batch commit (ms)128 129 WiredTiger options:130   --wiredTigerCacheSizeGB arg           maximum amount of memory to allocate
  
131                                         for cache; defaults to 1/2 of physical
  
132                                         RAM133   --wiredTigerStatisticsLogDelaySecs arg (=0)134                                         seconds to wait between each write to a135                                         statistics file in the dbpath; 0 means
  
136                                         do not log statistics137   --wiredTigerJournalCompressor arg (=snappy)138                                         use a compressor for log records
  
139                                         [none|snappy|zlib]140   --wiredTigerDirectoryForIndexes       Put indexes and data in different
  
141                                         directories142   --wiredTigerCollectionBlockCompressor arg (=snappy)143                                         block compression algorithm for 144                                         collection data [none|snappy|zlib]145   --wiredTigerIndexPrefixCompression arg (=1)146                                         use prefix compression on row-store
  
147                                         leaf pages



运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-626348-1-1.html 上篇帖子: 腾讯云服务器快速搭建MongoDB数据库 下篇帖子: 深入MongoDB内存溢出调优
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表