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
相关文章:

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 ] …...

java的反射
在java语言中,反射机制是指对于处在运行状态的类,都能够获取到这个类的所有属性和方法。对于任意一个对象,都能够调用它的任意一个方法以及访问它的属性;这种通过动态获取类或对象的属性以及方法从而完成调用功能被称为java语言的…...

MySQL — InnoDB 锁
文章目录 锁共享锁和排他锁意向锁记录锁间隙锁临键锁插入意向锁自增锁 锁 加锁是实现数据库并发控制的一个非常重要的技术。当事务在对某个数据对象进行操作前,先向系统发出请求,对其加锁。加锁后事务就对该数据对象有了一定的控制,在该事务…...
首批获得金融级行业云平台认证,天翼云深耕行业云
云计算下半场看什么? 无疑是金融、政务、制造等传统政企用户的上云与用云。随着数字经济发展和产业数字化的提速,上云已是政企用户推动其数字化转型不断深入的重要抓手,成为不可阻挡的趋势。 与互联网用户相比,政企用户上云极为…...

浅谈Python解释器的组成
Python解释器是一个复杂的软件,它可以解释和执行Python代码。以下是Python解释器的主要组成部分: 源代码词法分析器(Lexical Analyzer): 这部分的任务是将输入的Python源代码分解成称为"tokens"的基础元素。例如&#x…...

服务限流治理
一、基础概念 1.什么是服务限流? 限流在日常生活中也很常见,比如节假日你去一个旅游景点,为了不把景点撑爆,管理部门通常会在外面设置拦截,限制景点的进入人数(等有人出来之后,再放新的人进去…...

机器学习笔记 - 使用CLIP在没有数据的情况下创建图像分类器
想象一下,如果我们现在需要对人们是否戴眼镜进行分类,但您没有数据或资源来训练自定义模型。该怎么办?这里我们了解如何使用预先训练的 CLIP 模型来创建自定义分类器,而无需任何培训。这种方法称为零样本图像分类,它可以对原始 CLIP 模型训练期间未明确看到的类别图像进行…...

42.利用 牛顿迭代法解非线性高维方程组(matlab程序)
1.简述 若向量记号为X,方程组就可以写成F(X)0的形式。 我们知道,对于一元函数的牛顿迭代法求根公式 类似的,对于多元函数求根公式 其中X是向量,是非线性方程组对应的雅可比矩阵。 具体求解的时候,我们可以先通过绘图命令绘制图形…...

我在leetcode用动态规划炒股
事情是这样的,突然兴起的我在letcode刷题 121. 买卖股票的最佳时机122. 买卖股票的最佳时机 II123. 买卖股票的最佳时机 III 以上三题。 1. 121. 买卖股票的最佳时机 1.1. 暴力遍历,两次遍历 1.1.1. 算法代码 public class Solution {public int Ma…...

rust实践-异步并发socket通信
客户端 [package] name = "rust_client" version = "0.1.0" edition = "2021"[dependencies] tokio = {version = "1.14.0", features = ["full"] }use tokio::io::{self, AsyncReadExt, AsyncWriteExt}; use tokio::net::…...

SolidUI社区-根据Prompt打造人设
背景 随着文本生成图像的语言模型兴起,SolidUI想帮人们快速构建可视化工具,可视化内容包括2D,3D,3D场景,从而快速构三维数据演示场景。SolidUI 是一个创新的项目,旨在将自然语言处理(NLP)与计算机图形学相…...

设计模式行为型——观察者模式
目录 什么是观察者模式 观察者模式的实现 观察者模式角色 观察者模式类图 观察者模式举例 观察者模式代码实现 观察者模式的特点 优点 缺点 使用场景 注意事项 实际应用 什么是观察者模式 观察者模式(Observer Pattern)是一种行为型设计模式…...

Kernel Exception导致手机重启案例分析
和你一起终身学习,这里是程序员Android 经典好文推荐,通过阅读本文,您将收获以下知识点: 一、高温触发 Kernel Exception 重启问题二、解决方案三、提高电池温度方案 一、 高温触发 Kernel Exception 重启问题 手机 电池温度 默认60度以上高温…...

C++入门篇5---模板
相信大家都遇到过这么一种情况,为了满足不同类型的需求,我们要写多个功能相同,参数类型不同的代码,为此,C引入了泛型编程这一概念,而模板就是实现泛型编程的基础,其实本质就是我们写一个类似”模…...

L2CS-Net: 3D gaze estimation
L2CS-Net: Fine-Grained Gaze Estimation in Unconstrained Environments论文解析 摘要1. 简介2. Related Work3. METHOD3.1 Proposed loss function3.2 L2CS-Net 结构3.3 数据集3.4 评价指标 4. 实验4.1 实验结果 论文地址:L2CS-Net: Fine-Grained Gaze Estimation…...

kenernetes/k8s笔试面试
k8s的基础概念 k8s本质是一个容器编排系统,可以管理容器的生命周期,应用部署,更新,维护,应用提供服务,扩容缩容应用,故障自愈。 k8s与docker的关系 docker:是一种轻量级的虚拟化技术。运维层…...

我们真的是在做数据治理吗
我们真的是在做数据治理吗? 什么是数据治理? 数据治理和数据管理有什么区别? 相信即使是考过数据治理工程师的人,面对这2个问题也仍然会有这个疑问。 目前国际和国内对于数据治理没有明确统一的定义,对于数据治理的服…...

聊聊汽车电子的话题
当谈到汽车电子时,有许多有趣的话题可以探讨。以下是一些可能感兴趣的话题: 自动驾驶技术:自动驾驶技术正变得越来越先进,它们如何在汽车中实现?它们将如何改变我们的交通方式以及对道路安全的影响? 电动汽…...

ThinkPHP6企业OA办公系统
有需要请加文章底部Q哦 可远程调试 ThinkPHP6企业OA办公系统 一 介绍 勾股OA基于ThinkPHP6开发,前端Layui,数据库mysql,是一款实用的企业办公系统。可多角色登录,集成了系统设置、人事管理、消息管理、审批管理、日常办公、客户…...

PPS Tester测量原理和实施方法
怿星科技发布了新品PPS Tester,这是一款基于1PPS方法的时间同步精度测试设备。PPS Tester由硬件模块ETS2110和上位机软件ePPSTester构成。本文将围绕此设备的应用场景,介绍相关概念和设备使用方法。 什么是时间同步? 时间同步就是采取某项技…...

浅谈新电改背景下电网企业综合能源服务商业模式研究及发展方向
安科瑞 华楠 摘要: 新电改方案实施后,由于输配电价的改革和售电侧的放开,电网企业的盈利模式也随之发生了变化。这就要求电网企业转变服务理念与经营方式,来寻求竞争优势。基于“魏朱六要素商业模式”模型,对电网企业综合能源服务…...

SpringBoot + Docker 实现一次构建到处运行~
一、容器化部署的好处 图片 Docker 作为一种新兴的虚拟化方式,它可以更高效的利用系统资源,不需要进行硬件虚拟以及运行完整操作系统等额外开销。 传统的虚拟机技术启动应用服务往往需要数分钟,而 Docker 容器应用,由于直接运行…...

clang-format格式化代码
1. clang-format简介 Clang-Format可用于格式化(排版)多种不同语言的代码。其自带的排版格式主要有:LLVM, Google, Chromium, Mozilla, WebKit等; 利用style参数配置风格。通过编写 .clang-format 文件,可以实现代码风格的配置。…...

品牌宣传与媒体传播是声誉管理的主要方式之一
企业声誉是现如今影响品牌信任度、客户忠诚度的重要因素,也被视为企业的一种无形资,更影响着企业未来的发展。因此,企业声誉管理也日渐成为企业管理的重要课题之一,尤其在品牌营销管理领域。 什么是声誉管理?声誉管理有…...

2023年8月7日-8月13日,(上午熟悉公司代码,周一到周五晚上优先工作所急视频教程,其他业余时间进行ue视频教程,为独立游戏做准备)
按照规划,上午熟悉公司源码,下午进行filament和ue渲染,晚上写工作代码。回家后泛读pbrt或者其他书籍催眠。 业余学习ue的各种视频教程,为独立游戏做准备(公司也实行末位淘汰,给自己留条后路)。累…...

Vue3 第二节 Vue3的响应式
1.Vue3的响应式原理 2.ref函数和reactive函数的对比 3.setup注意点 一.Vue3的响应式原理 1.Vue2.x中的响应式原理 ① 实现原理 对象类型:通过Object.defineProperty() 对属性的读取,修改进行拦截(数据劫持)数组类型…...

通过easyui实现动态控制表格字段显示、导出表格数据
前言 学过layui前端框架的都知道,layui默认帮我们实现了控制表格字段显示以及数据的导出功能。 1、控制表格字段显示 2、数据导出 3、导出为pdf:导出按钮的右边那个按钮就是打印pdf的 那么,easyui要怎么实现这些功能呢?这篇文章就…...

JWT入门,jwt可以解密吗?
JWT 什么是 JWT JSON Web Token,通过数字签名的方式,以 JSON 对象为载体,在不同的服务终端之间安全地传输信息 官网:https://jwt.io/SDK: https://jwt.io/libraries (含Java和各种语言)Java SDK(上面的SDK链接得到): https://g…...

36.利用解fgoalattain 有约束多元变量多目标规划问题求解(matlab程序)
1.简述 多目标规划的一种求解方法是加权系数法,即为每一个目标赋值一个权系数,把多目标模型转化为一个单目标模型。MATLAB的fgoalattain()函数可以用于求解多目标规划。 基本语法 fgoalattain()函数的用法: x fgoalattain(fun,x0,goal,weig…...

EPPlus 读取和生成Excel
在项目中添加了EPPlus库的引用,你可以通过NuGet包管理器或手动将EPPlus库添加到项目中。同时,需要注意的是EPPlus库支持的是xlsx格式的Excel文件。 读取 使用EPPlus读取本地Excel文件的示例代码如下: using OfficeOpenXml;public void Rea…...