1. 程式人生 > >鏈接mongodb服務器

鏈接mongodb服務器

logs 格式 分享圖片 shutdown body http 技術 tail 重新

查看mongodb的使用說明

技術分享圖片

版本是3.6.0

options 選項 指的是用戶名和密碼

技術分享圖片

address 數據庫地址 數據庫格式是 ip:端口/數據庫 192.168.0.5:999/foo

技術分享圖片

鏈接本地數據庫 test 執行 mongo 127.0.0.1:12345/test

技術分享圖片

表示鏈接成功 但是有很多警告 權限問題 因為沒有用戶名和密碼

成功的鏈接了mongodb服務 怎麽關閉呢

使用 db.shutdownServer() 關閉數據庫鏈接 (我比較喜歡用命令)

技術分享圖片

發現無法關閉 給出提示 只能使用admin權限關閉 (net stop mongodb/ net start mongodb)

use admin

技術分享圖片

Ctrl+C 退出

技術分享圖片

查看日誌

使用 tail 命令 tail 命令在windows中藥另行安裝 下載tail.exe

/Files/hantianwei/tail.zip

下載後解壓,把tail.exe 復制到 目錄:C:\Windows\System32 下

查看日誌 可以看到已經退出

技術分享圖片

重新啟動mongodb 服務

技術分享圖片

重新打開日誌查看 tail -f c:\data\log\mongod.log

技術分享圖片

12345 端口正在等待鏈接

Ctrl+C 退出

再次 mongo 127.0.0.1:12345/test 暫時不各種警告

技術分享圖片

鏈接mongodb服務器