每次运行mongod --dbpath D:/MongoDB/data命令行来启动MongoDB实在是不方便,就像我免安装的MySQL一样,我想把它作为Windows服务,这样就方便多了。
D:MongoDBin>mongod --logpath D:MongoDBlogsMongoDB.log --logappend --dbpath D:MongoDBdata --directoryperdb --serviceName MongoDB --install
all output going to: D:MongoDBlogsMongoDB.log
Creating service MongoDB.
Service creation successful.
Service can be started from the command line via 'net start "MongoDB"'.
注意:这条命令要到MongoDB的bin目录下运行,刚开始的时候,我就直接在D:下运行,结果服务的可执行目录为【"D:mongod" --logpath "D:MongoDBlogsMongoDB.log" --logappend --dbpath "D:MongoDBdata" --directoryperdb --service 】,肯定是不对的。
该命令行指定了日志文件:D:MongoDBlogsMongoDB.log,日志是以追加的方式输出的;
数据文件目录:D:MongoDBdata,并且参数--directoryperdb说明每个DB都会新建一个目录;
Windows服务的名称:MongoDB;
以上的三个参数都是可以根据自己的情况而定的,呵呵。
最后是安装参数:--install,与之相对的是--remove
启动MongoDB:net start MongoDB
停止MongoDB:net stop MongoDB