Windows系统中的安装启动–服务端启动


将压缩包解压到一个目录中。
在解压目录中,手动建立一个目录用于存放数据文件,如 data/db

  

方式1:命令行参数方式启动服务
在 bin 目录中打开命令行提示符,输入如下命令:
mongod --dbpath=../data/db

  

配置文件方式启动服务
在解压目录中新建 config 文件夹,该文件夹中新建配置文件 mongod.conf ,内如参考如下:
storage:  
  #The directory where the mongod instance stores its data.Default Value is "/data/db" on Windows. 
  dbPath: D:/mongodb-win32-x86_64-2008plus-ssl-4.0.28/data

  

【注意】
1)配置文件中如果使用双引号,比如路径地址,自动会将双引号的内容转义。如果不转义,则会报错:
error-parsing-yaml-config-file-yaml-cpp-error-at-line-3-column-15-unknown-escape-character-d
解决:
a. 对 / 换成 / 或 //
b. 如果路径中没有空格,则无需加引号。
2)配置文件中不能以Tab分割字段

  

启动方式:
mongod -f ../config/mongod.conf 
或mongod --config ../config/mongod.conf

  

systemLog:
destination: file
#The path of the log file to which mongod or mongos should send all diagnostic logging information
path: “D:/02_Server/DBServer/mongodb-win32-x86_64-2008plus-ssl-4.0.1/log/mongod.log”
logAppend: true
storage:
journal:
enabled: true
#The directory where the mongod instance stores its data.Default Value is “/data/db”.
dbPath: “D:/02_Server/DBServer/mongodb-win32-x86_64-2008plus-ssl-4.0.1/data”
net:
#bindIp: 127.0.0.1
port: 27017
setParameter:
enableLocalhostAuthBypass: false

  

原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/244513.html

(0)
上一篇 2022年4月17日
下一篇 2022年4月17日

相关推荐

发表回复

登录后才能评论