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.rhkb.cn/news/78745.html

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

相关文章

【MySQL】增删查改基础

文章目录 一、创建操作1.1 单行插入1.2 多行插入1.3 插入否则替换更新1.4 替换replace 二、查询操作2.1 select查询2.2 where条件判断2.3 order by排序2.4 limit筛选分页结果 三、更新操作四、删除操作4.1 删除一列4.2 删除整张表数据 五、插入查询结果 CRUD : Create(创建), R…

CS 144 Lab Four 收尾 -- 网络交互全流程解析

CS 144 Lab Four 收尾 -- 网络交互全流程解析 引言Tun/Tap简介tcp_ipv4.cc文件配置信息初始化cs144实现的fd家族体系基于自定义fd体系进行数据读写的adapter适配器体系自定义socket体系自定义事件循环EventLoop模板类TCPSpongeSocket详解listen_and_accept方法_tcp_main方法_in…

【雕爷学编程】Arduino动手做(188)---0.66寸OLED液晶屏模块

37款传感器与模块的提法&#xff0c;在网络上广泛流传&#xff0c;其实Arduino能够兼容的传感器模块肯定是不止37种的。鉴于本人手头积累了一些传感器和执行器模块&#xff0c;依照实践出真知&#xff08;一定要动手做&#xff09;的理念&#xff0c;以学习和交流为目的&#x…

Source Insight显示行号

1、默认不显示行号 (1)Source Insight默认是不显示行号的&#xff0c;如下图所示。 2、配置显示行号 2.1、方法1 (1)点击View→Line Numbers。 2.2、方法2 (1)空白处鼠标右键&#xff0c;在点击"Line Numbers"。 (2)配置显示行号后如下图所示。

使用hexo进行博客迁移

本文不会从0开始介绍如何通过hexo去搭建一个github page。因为最近折腾了下&#xff0c;发现这玩意儿确实写个博客很费劲&#xff0c;打算把他拖管到github当作我的知识库网站&#xff0c;我的主要文章还是通过mweb写完一键发布到博客园&#xff0c;然后csdn记录一些杂文和思考…

Liunx环境下git的详细使用(gitee版)

Liunx环境下git的详细使用&#xff08;gitee版&#xff09; 1.git是什么2.git操作2.1在gitee创建一个仓库2.2.gitignore2.3.git 3.git三板斧3.1add3.2 commit3.3push 4.git其他命令4.1查看当前仓库状态4.2查看提交日志4.3修改git里面文件名称4.4删除文件4.5修改远端仓库内容 1.…

低碳 Web 实践指南

现状和问题 2023年7月6日&#xff0c;世界迎来有记录以来最热的一天。气候变化是如今人类面临的最大健康威胁。据世界卫生组织预测2030年至2050年期间&#xff0c;气候变化预计每年将造成约25万人死亡。这是人们可以真切感受到的变化&#xff0c;而背后的主要推手是碳排放。 …

Java分布式微服务2——声明式Http客户端(Feign)与网关(Gateway)

文章目录 Http声明式客户端FeignFeign介绍与使用Feign自定义配置Feign性能优化Feign最佳实践方案 网关Gateway网关Gateway的作用与搭建路由断言工厂Route Predicate Factory路由过滤器GatewayFilter全局过滤器过滤器执行顺序网关的跨域处理 Http声明式客户端Feign Feign介绍与…

Python魔法解析:探索变量类型的丰富多彩世界!

在Python这个魔法般的编程语言中&#xff0c;变量是连接你与计算机世界的神奇桥梁。然而&#xff0c;这些变量并不是单一的&#xff0c;它们有着丰富多彩的类型。无论你是刚刚踏入编程的大门&#xff0c;还是想要深入了解Python的高级特性&#xff0c;本篇博客将带你探索变量的…

c++学习(特殊类设计)[30]

只能在堆上创建对象的类 如果你想要确保对象只能在堆上创建&#xff0c;可以通过将析构函数声明为私有&#xff0c;并提供一个静态成员函数来创建对象。这样&#xff0c;类的实例化只能通过调用静态成员函数来完成&#xff0c;而无法直接在栈上创建对象。 以下是一个示例&…

【PCIE】PCIE的驱动和pcie的端口驱动关系

pice驱动和pcie端口驱动区别 PCIe的端口服务驱动与PCIe驱动之间存在一定的关系&#xff0c;但它们是不同的概念。 PCIe驱动是用于管理和操作PCIe设备的驱动程序。它负责与硬件进行通信&#xff0c;并实现对PCIe设备的配置、数据传输以及其他相关操作。PCIe驱动通常涉及设备的…

【NLP概念源和流】 05-引进LSTM网络(第 5/20 部分)

一、说明 在上一篇博客中,我们讨论了原版RNN架构,也讨论了它的局限性。梯度消失是一个非常重要的缺点,它限制了RNN对较短序列的建模。香草 RNN 在相关输入事件和目标信号之间存在超过 5-10 个离散时间步长的时间滞时无法学习。这基本上限制了香草RNN在许多实际问题上的应用,…

NestJs Debug配置文件

&#xff08;事缓则圆,人缓则安,语迟则贵,虎行似病,鹰立似睡。清俞万春《荡寇志》&#xff09; {"version": "0.2.0","configurations": [{"type": "node","request": "launch","name": &quo…

基于LNMP架构搭建Discuz论坛

LNMP: L---->linux系统&#xff0c;操作系统。 N----->nginx网站服务&#xff08;前端),提供前端的静态页面服务。同时具有代理、转发的作用。&#xff08;转发就是转发后端请求&#xff0c;转发PHP&#xff09;&#xff0c;nginx没有处理动态资源的功能&#xff0c;他有…

IO模型-信号驱动IO

linux内核中存在一个信号SIGIO&#xff0c;这个信号就是用于实现信号驱动IO的。当应用程序中想要以信号驱动IO的模型读写硬件数据时&#xff0c;首先注册一个SIGIO信号的信号处理函数,当硬件数据就绪&#xff0c;硬件会发起一个中断&#xff0c;在硬件的中断处理函数中向当前进…

Plus 框架分页合理化问题

需要关闭 MyBatis Plus的分页合理化 RuoYi-Vue-Plus框架默认的Mybatis Plus分页拦截器配置是打开了分页合理化&#xff0c;这样会导致溢出的分页数据本来应该返回空数据&#xff0c;打开之后而会永远返回默认的前10条数据。 /*** mybatis-plus配置类(下方注释有插件介绍)** au…

CSS元素的显示模式

1、现在我想做成小米左侧边栏这样的效果&#xff0c;该怎么做呢&#xff1f; 2、小米商城触碰之后会显示出新的商品案例 3、一碰到之后会出现这个列表 4、这里涉及到了元素显示模式&#xff1a; 5、用人进行划分可以分为男人和女人&#xff0c;根据男人和女人的特性进行相应的…

【ChatGPT 指令大全】怎么利用ChatGPT写报告

目录 选定切入角度 报告开头 大纲生成 草稿撰写 研究报告 提出反对观点 报告总结 研究来源 总结 随着人工智能技术的快速发展&#xff0c;自然语言处理技术在各个领域的应用越来越广泛。其中&#xff0c;ChatGPT作为目前最先进的自然语言处理模型之一&#xff0c;其强…

读写分离实现sharding-jdbc

一、背景 二、使用sharding-JDBC实现 1、导入依赖 2、配置文件&#xff08;名字要对应&#xff09; ​​​​​​​ 查询策略&#xff08;轮询&#xff0c;指定哪个是主库哪个是从库&#xff09; 允许bean定义覆盖

刷题笔记 day8

1004 最大连续1的个数 III 这道题要求将原数组中的0翻转成1&#xff0c;求出最大元素全是1的子数组长度&#xff0c;看这道题第一感觉还要将里面的0变成1&#xff0c;感觉这道题解决起来很麻烦&#xff0c;但是我们可以转变思路&#xff0c;找出其最大子数组&#xff0c;使得子…