您现在的位置是:课程教程文章
如何启动mongodb的服务器?
2023-12-18 19:02课程教程文章 人已围观
-
C/C++ Linux服务器开发/高级架构师课程
C/C++ Linux服务器开发/高级架构师课程领取学习资料或者咨询课程用微信扫一扫添加老师微信哦... -
游戏服务器 一、二期_腾讯课堂
游戏服务器 一、二期_腾讯课堂... -
Ubuntu20.04 ssh服务器和客户端配置_公私钥登
Ubuntu20.04 ssh服务器和客户端配置_公私钥登课程偏运维,面向没有linux使用经验或者想了解下shell编程的同学,课程中不包... -
远程通信系统|聊天室|阿里云|QT
远程通信系统|聊天室|阿里云|QT服务器:libevent、多线程、json、MySQL 客户端:Qt、信号与槽、多线程、TCP 完整课...
在你的安装目录/bin下,有一个叫mongod.exe的应用程序,这个程序就是用来启动你的mongodb服务器的。
创建数据库目录
在你想要存放数据的地方,新建一个文件夹,如db,我们推荐的数据库目录设置是:
data/ conf -->配置文件目录 mongod.conf -->配置文件 db -->数据库目录 log -->日志文件目录 mongodb.log -->日志记录文件
启动数据库:
我本地是window10环境,我的mongodb服务安装在F盘的mongodb文件夹。我的数据目录在F的data文件夹。
启动doc命令,输入一下命令:
F:\>mongodb/bin F:\mongodb\bin>mongod --path=/data/db
输出以下信息:
2016-10-20T17:11:01.839+0800 I CONTROL [initandlisten] MongoDB starting : pid=1504 port=27017 dbpath=/data/db 64-bit host=Haier-PC 2016-10-20T17:11:01.842+0800 I CONTROL [initandlisten] targetMinOS: Windows 7/Windows Server 2008 R2 2016-10-20T17:11:01.844+0800 I CONTROL [initandlisten] db version v3.0.12-47-gd57ef6a 2016-10-20T17:11:01.844+0800 I CONTROL [initandlisten] git version: d57ef6a0c5a41729977f8d535a4c8de6d0cff8ba 2016-10-20T17:11:01.844+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-10-20T17:11:01.844+0800 I CONTROL [initandlisten] allocator: tcmalloc 2016-10-20T17:11:01.844+0800 I CONTROL [initandlisten] options: { storage: { dbPath: "/data/db" } } 2016-10-20T17:11:01.860+0800 I JOURNAL [initandlisten] journal dir=/data/db\journal 2016-10-20T17:11:01.862+0800 I JOURNAL [initandlisten] recover : no journal files present, no recovery needed 2016-10-20T17:11:01.971+0800 I JOURNAL [durability] Durability thread started 2016-10-20T17:11:01.972+0800 I JOURNAL [journal writer] Journal writer thread started 2016-10-20T17:11:02.186+0800 I INDEX [initandlisten] allocating new ns file /data/db\local.ns, filling with zeroes... 2016-10-20T17:11:02.553+0800 I STORAGE [FileAllocator] allocating new datafile /data/db\local.0, filling with zeroes... 2016-10-20T17:11:02.554+0800 I STORAGE [FileAllocator] creating directory /data/db\_tmp 2016-10-20T17:11:02.600+0800 I STORAGE [FileAllocator] done allocating datafile /data/db\local.0, size: 64MB, took 0.012 secs 2016-10-20T17:11:02.654+0800 I NETWORK [initandlisten] waiting for connections on port 27017
最后一行显示"waiting for connections on port 27017",表明mongodb服务器已经启动,正在27017窗口等待连接。
课程教程:如何启动mongodb的服务器?上一篇:怎么查看mysql的错误日志
下一篇:没有了