• MongoDB安装Windows服务


    每次运行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

  • 相关阅读:
    Android入门:Button
    Android入门:部署时的常见错误
    to be
    Android入门:单元测试
    忘记 MySQL 的 root 帐号密码该怎么办
    Eclipse开发build path中jar包部署到应用中
    报告两个bug
    本站导引
    一个用Word做报表设计的报表系统windwardreports
    智能互联网
  • 原文地址:https://www.cnblogs.com/Alex80/p/4384370.html
Copyright © 2020-2023  润新知