MongoDB 3.4版本小技巧之如何開啟http service

chenfeng發表於2018-02-06
Mongodb3.0開始在配置檔案裡廢棄了引數httpinterface=true,如果用該引數啟動會報如下錯誤:


Unrecognized option: httpinterface=true
try './mongod --help' for more information


新的版本可以用如下方式啟動http服務
# ./mongod -f /data/mongodb/mongod.conf --httpinterface 
about to fork child process, waiting until server is ready for connections.
forked process: 13741
child process started successfully, parent exiting



mongodb的http service埠為28017
# ss -lnt |grep 28017
LISTEN     0      128                       *:28017                    *:*   


檢視web頁面


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2150900/,如需轉載,請註明出處,否則將追究法律責任。

相關文章