mongodb-win32-x86_64-2008plus-3.4.24-signed.msi

 

 

 

 

 

 

 

Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。C:\Users\Administrator>cd C:\MongoDB\Server\3.4\binC:\MongoDB\Server\3.4\bin>C:\MongoDB\Server\3.4\bin>mongod --help
Options:General options:-h [ --help ]                         show this usage information--version                             show version information-f [ --config ] arg                   configuration file specifyingadditional options-v [ --verbose ] [=arg(=v)]           be more verbose (include multiple timesfor more verbosity e.g. -vvvvv)--quiet                               quieter output--port arg                            specify port number - 27017 by default--bind_ip arg                         comma separated list of ip addresses tolisten on - all local ips by default--ipv6                                enable IPv6 support (disabled bydefault)--maxConns arg                        max number of simultaneous connections- 1000000 by default--logpath arg                         log file to send write to instead ofstdout - has to be a file, notdirectory--logappend                           append to logpath instead ofover-writing--logRotate arg                       set the log rotation behavior(rename|reopen)--timeStampFormat arg                 Desired format for timestamps in logmessages. One of ctime, iso8601-utc oriso8601-local--pidfilepath arg                     full path to pidfile (if not set, nopidfile is created)--keyFile arg                         private key for cluster authentication--noauth                              run without security--setParameter arg                    Set a configurable parameter--httpinterface                       enable http interface--transitionToAuth                    For rolling access control upgrade.Attempt to authenticate over outgoingconnections and proceed regardless ofsuccess. Accept incoming connectionswith or without authentication.--clusterAuthMode arg                 Authentication mode used for clusterauthentication. Alternatives are(keyFile|sendKeyFile|sendX509|x509)--networkMessageCompressors arg       Comma-separated list of compressors touse for network messages--auth                                run with security--jsonp                               allow JSONP access via http (hassecurity implications)--rest                                turn on simple rest api--slowms arg (=100)                   value of slow for profile and consolelog--profile arg                         0=off 1=slow, 2=all--cpu                                 periodically show cpu and iowaitutilization--sysinfo                             print some diagnostic systeminformation--noIndexBuildRetry                   don't retry any index builds that wereinterrupted by shutdown--noscripting                         disable scripting engine--notablescan                         do not allow table scansWindows Service Control Manager options:--install                             install Windows service--remove                              remove Windows service--reinstall                           reinstall Windows service (equivalentto --remove followed by --install)--serviceName arg                     Windows service name--serviceDisplayName arg              Windows service display name--serviceDescription arg              Windows service description--serviceUser arg                     account for service execution--servicePassword arg                 password used to authenticateserviceUserReplication options:--oplogSize arg                       size to use (in MB) for replication oplog. default is 5% of disk space (i.e.large is good)Master/slave options (old; use replica sets instead):--master                              master mode--slave                               slave mode--source arg                          when slave: specify master as<server:port>--only arg                            when slave: specify a single databaseto replicate--slavedelay arg                      specify delay (in seconds) to be usedwhen applying master ops to slave--autoresync                          automatically resync if slave data isstaleReplica set options:--replSet arg                         arg is <setname>[/<optionalseedhostlist>]--replIndexPrefetch arg               specify index prefetching behavior (ifsecondary) [none|_id_only|all]--enableMajorityReadConcern           enables majority readConcernSharding options:--configsvr                           declare this is a config db of acluster; default port 27019; defaultdir /data/configdb--shardsvr                            declare this is a shard db of acluster; default port 27018Storage options:--storageEngine arg                   what storage engine to use - defaultsto wiredTiger if no data files present--dbpath arg                          directory for datafiles - defaults to\data\db\ which is C:\data\db\ based onthe current working drive--directoryperdb                      each database will be stored in aseparate directory--noprealloc                          disable data file preallocation - willoften hurt performance--nssize arg (=16)                    .ns file size (in MB) for new databases--quota                               limits each database to a certainnumber of files (8 default)--quotaFiles arg                      number of files allowed per db, implies--quota--smallfiles                          use a smaller default file size--syncdelay arg (=60)                 seconds between disk syncs (0=never,but not recommended)--upgrade                             upgrade db if needed--repair                              run repair on all dbs--repairpath arg                      root directory for repair files -defaults to dbpath--journal                             enable journaling--nojournal                           disable journaling (journaling is on bydefault for 64 bit)--journalOptions arg                  journal diagnostic options--journalCommitInterval arg           how often to group/batch commit (ms)WiredTiger options:--wiredTigerCacheSizeGB arg           maximum amount of memory to allocatefor cache; defaults to 1/2 of physicalRAM--wiredTigerStatisticsLogDelaySecs arg (=0)seconds to wait between each write to astatistics file in the dbpath; 0 meansdo not log statistics--wiredTigerJournalCompressor arg (=snappy)use a compressor for log records[none|snappy|zlib]--wiredTigerDirectoryForIndexes       Put indexes and data in differentdirectories--wiredTigerCollectionBlockCompressor arg (=snappy)block compression algorithm forcollection data [none|snappy|zlib]--wiredTigerIndexPrefixCompression arg (=1)use prefix compression on row-storeleaf pagesC:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>mongod --install --serviceName "MongoDB" --httpinterface --rest --bind_ip 0.0.0.0 --port 27017 --dbpath C:\MongoDB\Server\3.4\data\db --logpath C:\MongoDB\Server\3.4\data\log\log.txt --logappendC:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>net start MongoDB
MongoDB 服务正在启动 ..
MongoDB 服务已经启动成功。C:\MongoDB\Server\3.4\bin>mongo
MongoDB shell version v3.4.24
connecting to: mongodb://127.0.0.1:27017
MongoDB server version: 3.4.24
Server has startup warnings:
2023-08-05T16:58:17.407+0800 I CONTROL  [initandlisten]
2023-08-05T16:58:17.407+0800 I CONTROL  [initandlisten] ** WARNING: Access control is not enabled for the database.
2023-08-05T16:58:17.407+0800 I CONTROL  [initandlisten] **          Read and write access to data and configuration is unrestricted.
2023-08-05T16:58:17.408+0800 I CONTROL  [initandlisten]
2023-08-05T16:58:17.408+0800 I CONTROL  [initandlisten] Hotfix KB2731284 or later update is not installed, will zero-out data files.
2023-08-05T16:58:17.408+0800 I CONTROL  [initandlisten]
>
>
> db
test
>
>
> exit
byeC:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>
C:\MongoDB\Server\3.4\bin>net stop MongoDB
MongoDB 服务正在停止.
MongoDB 服务已成功停止。C:\MongoDB\Server\3.4\bin>mongod --remove
2023-08-05T17:02:56.106+0800 I CONTROL  [main] Trying to remove Windows service 'MongoDB'
2023-08-05T17:02:56.108+0800 I CONTROL  [main] Service 'MongoDB' removed

 

 

 

 

 mongodb-win32-x86_64-2008plus-3.4.24-signed.msi

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/27298.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【C# 基础精讲】条件语句:if、else、switch

条件语句是C#编程中用于根据条件执行不同代码块的关键结构。C#支持if、else和switch三种常见的条件语句&#xff0c;它们允许根据表达式的结果决定程序的执行路径。在本文中&#xff0c;我们将详细介绍这三种条件语句的语法和使用方法。 if语句 if语句用于在给定条件为真&…

Linux Shell 编程入门

从程序员的角度来看&#xff0c; Shell本身是一种用C语言编写的程序&#xff0c;从用户的角度来看&#xff0c;Shell是用户与Linux操作系统沟通的桥梁。用户既可以输入命令执行&#xff0c;又可以利用 Shell脚本编程&#xff0c;完成更加复杂的操作。在Linux GUI日益完善的今天…

嵌入式虚拟仿真实验教学平台之串口发送数据

嵌入式虚拟仿真实验教学平台课程系列 串口发送数据实验 课程内容 本实验使用 STM32 的串口发送数据。开始仿真后,打开串口监视器&#xff0c;串口监视器会打印出要发送的数据。 课程目标 学习配置使用GPIO功能学习配置使用复用功能学习配置使用UART功能 硬件设计 本课程…

整理出来的精选shiro面试题

1、简要介绍Shiro框架吗? Apache Shiro是Java的安全框架。 使用Shiro&#xff0c;可以轻松地开发足够好的APP应用程序。 这不仅可以用于JavaSE环境&#xff0c;也可以用于JavaEE环境。 Shiro提供了身份验证、许可、加密、会话管理、与Web集成和缓存等功能。 三个核心组件&am…

微信小程序如何配置并使用less?

1&#xff0c;检查微信开发者工具&#xff08;工具版本1.03&#xff09;————这步很重要不然后面按步骤实行后会发现急死你也还是不管用&#xff0c;我之前死在过这一步&#xff0c;所以大家不要再次踩坑了 ~ ~ 。。。 2&#xff0c;在VScode中下载Less插件 3&#xff0c;…

uni-app:分页实现多选功能

效果 代码解析 一、标签-列表 <view class"item_all" v-for"(item, index) in info" :key"index"><view class"position parameter-info text-over" :class"{checked_parameter: item.checked}" :data-id"i…

SSH 认证原理

SSH协议登录服务器&#xff1a; $ ssh userhost 主要有两种登录方式&#xff1a;第一种为密码口令登录&#xff0c;第二种为公钥登录 密码口令登录 通过密码进行登录&#xff0c;主要流程为&#xff1a; 1、客户端连接上服务器之后&#xff0c;服务器把自己的公钥传给客户端…

界面控件DevExpress.Drawing图形库早期增强功能分享

众所周知&#xff0c;DevExpress在v22.2发布周期中引入了全新的DevExpress.Drawing图形库&#xff08;并且已经在随后的小更新中引入了一系列增强功能&#xff09;。 在这篇博文中&#xff0c;我们将总结在DevExpress v23.1中解决的一些问题&#xff0c;以及在EAP构建中为以下…

C++中点云聚类算法的实现与应用探索

第一部分&#xff1a;C中点云聚类算法的实现与应用 在当今的计算机视觉领域&#xff0c;点云数据是一种重要的三维数据类型&#xff0c;它能有效表达三维物体的形状信息。然而&#xff0c;由于点云数据的无序性和稀疏性&#xff0c;对其进行分析与处理的难度较大。本文将介绍如…

Android 13 Hotseat定制化修改——006 hotseat图标禁止移动到Launcher中

目录 一.背景 二.方案 三.具体实践 一.背景 客户定制需要修改让hotseat中的icon不要移动到Launcher中,所以需要进行定制 二.方案 原生的Hotseat与Launcher是可以相互移动的,然后现在的需求是Hotseat中的图标只能在Hotseat中移动,所以需要做下限制 思路:在事件拦截的地…

代码随想录算法训练营day59

文章目录 Day59 下一个更大元素II题目思路代码 接雨水题目思路代码 Day59 下一个更大元素II 503. 下一个更大元素 II - 力扣&#xff08;LeetCode&#xff09; 题目 给定一个循环数组&#xff08;最后一个元素的下一个元素是数组的第一个元素&#xff09;&#xff0c;输出每…

ChatGPT“侵入”校园,教学评价体制受冲击,需作出调整

北密歇根大学的教授奥曼在学生作业中发现了一篇关于世界宗教的“完美论文”。“这篇文章写得比大多数学生都要好......好到不符合我对学生的预期&#xff01;”他去问ChatGPT&#xff1a;“这是你写的吗&#xff1f;”ChatGPT回答&#xff1a;“99.9%的概率是的。” ChatGPT“侵…

【Axure 教程】动态面板

【动态面板】是 Axure 中另外一个神级的元件&#xff0c;它的江湖地位可以说跟【中继器】不相上下&#xff0c;【动态面板】提供了简单的配置&#xff0c;却可以实现非常丰富的效果&#xff0c;在实际设计中应用非常广泛。 对于刚入门的产品经理来说&#xff0c;学习【动态面板…

AndroidStudio学习笔记

AndroidStudio学习笔记/踩坑 webview组件和其他组件起冲突问题解决方法原因 webview组件和其他组件起冲突 问题 webview和NestedScrollView组件一起使用时,会出现webview无法滑动的问题 解决方法 NestedScrollView nestedScrollView getView().findViewById(R.id.mine_scro…

Bootload U-Boot分析

Bootloader是在操作系统运行之前执行的一段小程序。通过这段小程序可以初始化硬件设备、建立内存空间的映射表&#xff0c;从而建立适当的系统软硬件环境&#xff0c;为最终调用操作系统内核做好准备。 对于嵌入式系统&#xff0c;Bootloader是基于特定硬件平台来实现的。因此…

C++11之右值引用

C11之右值引用 传统的C语法中就有引用的语法&#xff0c;而C11中新增了的 右值引用&#xff08;rvalue reference&#xff09;语法特性&#xff0c;所以从现在开始我们之前学习的引用就叫做左值引用&#xff08;lvalue reference&#xff09;。无论左值引用还是右值引用&#…

题目:2293.极大极小游戏

​​题目来源&#xff1a; leetcode题目&#xff0c;网址&#xff1a;2293. 极大极小游戏 - 力扣&#xff08;LeetCode&#xff09; 解题思路&#xff1a; 按要求模拟即可。 解题代码&#xff1a; class Solution {public int minMaxGame(int[] nums) {int nnums.length;whi…

BIO 阻塞式IO

BIO 阻塞式IO Java BIO 就是传统的 Java I/O 编程&#xff0c;其相关的类和接口在 java.io。 BIO(BlockingI/O)&#xff1a;同步阻塞&#xff0c;服务器实现模式为一个连接一个线程&#xff0c;即客户端有连接请求时服务器端就需要启动一个线程进行处理&#xff0c;如果这个连…

面试热题(滑动窗口最大值)

给你一个整数数组 nums&#xff0c;有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。 返回 滑动窗口中的最大值 。 输入&#xff1a;nums [1,3,-1,-3,5,3,6,7], k 3 输出&#xff1a;[3,3,5,…

【数据分析】pandas 一

目录 一&#xff0c;pandas简介&#xff1a; 二&#xff0c;pandas数据结构Series简介&#xff1a; 2.1 data为ndarray 2.2 data为字典 三&#xff0c;Serise切片操作&#xff1a; 四&#xff0c;Series性质&#xff1a; 4.1 Series类似于numpy,字典 4.2 矢量化操作和标…