Install MongoDB as windows service

In this page I will show you how to install MongoDB in windows as service. Download MongoDB .msi file here and install. I assume that you install it in C:\Program Files\MongoDB. MongoDB will connect C:/data/db as default dbpath, if this directory doesn't exist you have to tell MongoDB the right dbpath. I create two directories for log(D:\mongo_data\log) and database(D:\mongo_data\db).

Start MongoDB Service

Before configuring MongoDB service you have to use following command to start MongoDB service.

复制代码
cd C:\Program Files\MongoDB\Server\3.0\bin
mongod.exe --dbpath D:\mongo_data\db

You will see the output like following

复制代码
2016-05-11T11:37:11.596+0800 I CONTROL  Hotfix KB2731284 or later update is not installed, will zero-out data files
2016-05-11T11:37:11.603+0800 I CONTROL  [initandlisten] MongoDB starting : pid=7188 port=27017 dbpath=D:\mongo_data\db 64-bit host=yong-PC
2016-05-11T11:37:11.603+0800 I CONTROL  [initandlisten] targetMinOS: Windows Server 2003 SP2
2016-05-11T11:37:11.603+0800 I CONTROL  [initandlisten] db version v3.0.10
2016-05-11T11:37:11.603+0800 I CONTROL  [initandlisten] git version: 1e0512f8453d103987f5fbfb87b71e9a131c2a60
2016-05-11T11:37:11.603+0800 I CONTROL  [initandlisten] build info: windows sys.getwindowsversion(major=6, minor=1, build=7601, platform=2, service_pack='Service Pack 1') BOOST_LIB_VERSION=1_49
2016-05-11T11:37:11.603+0800 I CONTROL  [initandlisten] allocator: tcmalloc
2016-05-11T11:37:11.604+0800 I CONTROL  [initandlisten] options: { storage: { dbPath: "D:\mongo_data\db" } }
2016-05-11T11:37:11.613+0800 I JOURNAL  [initandlisten] journal dir=D:\mongo_data\db\journal
2016-05-11T11:37:11.614+0800 I JOURNAL  [initandlisten] recover : no journal files present, no recovery needed
2016-05-11T11:37:11.625+0800 I JOURNAL  [durability] Durability thread started
2016-05-11T11:37:11.626+0800 I JOURNAL  [journal writer] Journal writer thread started
2016-05-11T11:37:11.637+0800 I NETWORK  [initandlisten] waiting for connections on port 27017

You can press Ctrl + c to stop the service. As you can see it is a tedious process to start and stop the service. Next, I will show you how to configure MongoDB as windows service.

Configure MongoDB Service

Create a configuration file at C:\Program Files\MongoDB\Server\3.0\mongod.cfg like following.

复制代码
systemLog:
    destination: file
    path: D:\mongo_data\log\mongod.log
storage:
    dbPath: D:\mongo_data\db

Open windows command line and change directory to MongoDB installed and install MongoDB as windows Service

复制代码
cd C:\Program Files\MongoDB\Server\3.0\bin
mongod.exe --config "C:\Program Files\MongoDB\Server\3.0\mongod.cfg" --install

After executing the commands you can find MongoDB service in Windows Service Management(Win + R --> services.msc --> Enter)

You can create a shortcut to quick start and stop MongoDB service. How to create shortcut?

相关推荐
ProtonBase6 分钟前
如何从 0 到 1 ,打造全新一代分布式数据架构
java·网络·数据库·数据仓库·分布式·云原生·架构
小奥超人14 分钟前
RAR压缩算法的文件修复功能详解
windows·经验分享·winrar·办公技巧
云和数据.ChenGuang5 小时前
Django 应用安装脚本 – 如何将应用添加到 INSTALLED_APPS 设置中 原创
数据库·django·sqlite
woshilys6 小时前
sql server 查询对象的修改时间
运维·数据库·sqlserver
Hacker_LaoYi6 小时前
SQL注入的那些面试题总结
数据库·sql
建投数据7 小时前
建投数据与腾讯云数据库TDSQL完成产品兼容性互认证
数据库·腾讯云
Hacker_LaoYi8 小时前
【渗透技术总结】SQL手工注入总结
数据库·sql
岁月变迁呀8 小时前
Redis梳理
数据库·redis·缓存
独行soc8 小时前
#渗透测试#漏洞挖掘#红蓝攻防#护网#sql注入介绍06-基于子查询的SQL注入(Subquery-Based SQL Injection)
数据库·sql·安全·web安全·漏洞挖掘·hw
你的微笑,乱了夏天8 小时前
linux centos 7 安装 mongodb7
数据库·mongodb