美文网首页
mongodb本地启动

mongodb本地启动

作者: 张广旭 | 来源:发表于2020-06-29 09:25 被阅读0次

    mongodb 4.2

    mkdir -p pid logs data
    
    mongod \
    --bind_ip 127.0.0.1 --port 27017 --maxConns 100 --nounixsocket \
    --dbpath ~/test/test_mongodb/data --pidfilepath ~/test/test_mongodb/pid/mongod.pid --logpath ~/test/test_mongodb/logs/mongod.log \
    --logappend --logRotate rename \
    --noauth \
    --directoryperdb \
    --wiredTigerCacheSizeGB 0.03 \
    --fork
    

    相关文章

      网友评论

          本文标题:mongodb本地启动

          本文链接:https://www.haomeiwen.com/subject/emonfktx.html