溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mac下MongoDB的安裝

發布時間:2020-06-11 03:48:54 來源:網絡 閱讀:1847 作者:Cindere_liuqiqi 欄目:MongoDB數據庫

好久沒發博文啦~今天來一發~廢話少說~GoOn。


一:HomeBrew簡介與安裝

簡介:就是mac上的軟件包管理工具,方便安裝與卸載。

安裝:打開終端,輸入如下命令,期間會輸入一次回車+兩次開機密碼。

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

二:MongoDB安裝

1:打開終端,輸入下述指令

brew update

2 :繼續輸入下面指令,期間會出現約兩次進度條(忘記截圖)

brew install mongodb

3:輸入指令,啟動Mongodb

mongod

出現如下報錯:約是說沒有/data/db目錄的。

2016-08-02T18:19:16.825+0800 I CONTROL  [initandlisten] MongoDB starting : pid=37113 port=27017 dbpath=/data/db 64-bit host=C02Q6N1GFVH5-3.local

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] db version v3.2.8

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] git version: ed70e33130c977bda0024c125b56d159573dbaf0

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.2h  3 May 2016

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] allocator: system

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] modules: none

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] build environment:

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten]     distarch: x86_64

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten]     target_arch: x86_64

2016-08-02T18:19:16.826+0800 I CONTROL  [initandlisten] options: {}

2016-08-02T18:19:16.828+0800 I STORAGE  [initandlisten] exception in initAndListen: 29 Data directory /data/db not found., terminating

2016-08-02T18:19:16.828+0800 I CONTROL  [initandlisten] dbexit:  rc: 100

4:繼續輸入指令,創建/data/db,解決上述問題。期間會出入一次開機密碼

sudo mkdir -p /data/db

5:再次試著啟動Mongodb

mongod

出現如下報錯:約是說沒有權限。

2016-08-02T19:15:14.592+0800 I CONTROL  [initandlisten] MongoDB starting : pid=38311 port=27017 dbpath=/data/db 64-bit host=C02Q6N1GFVH5-3.local

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] db version v3.2.8

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] git version: ed70e33130c977bda0024c125b56d159573dbaf0

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.2h  3 May 2016

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] allocator: system

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] modules: none

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] build environment:

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten]     distarch: x86_64

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten]     target_arch: x86_64

2016-08-02T19:15:14.593+0800 I CONTROL  [initandlisten] options: {}

2016-08-02T19:15:14.595+0800 I STORAGE  [initandlisten] exception in initAndListen: 98 Unable to create/open lock file: /data/db/mongod.lock errno:13 Permission denied Is a mongod instance already running?, terminating

2016-08-02T19:15:14.595+0800 I CONTROL  [initandlisten] dbexit:  rc: 100

6:執行下述指令,解決上述問題,給權限(呵呵,執行完之后沒什么反應的)

sudo chown -R 用戶名 /data/db

7:再次試著啟動Mongodb

mongod

waitting 27017。。。成功啦?。?!

2016-08-02T19:16:06.621+0800 I CONTROL  [initandlisten] MongoDB starting : pid=38338 port=27017 dbpath=/data/db 64-bit host=C02Q6N1GFVH5-3.local

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] db version v3.2.8

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] git version: ed70e33130c977bda0024c125b56d159573dbaf0

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.2h  3 May 2016

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] allocator: system

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] modules: none

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] build environment:

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten]     distarch: x86_64

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten]     target_arch: x86_64

2016-08-02T19:16:06.622+0800 I CONTROL  [initandlisten] options: {}

2016-08-02T19:16:06.622+0800 I STORAGE  [initandlisten] wiredtiger_open config: create,cache_size=4G,session_max=20000,eviction=(threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),checkpoint=(wait=60,log_size=2GB),statistics_log=(wait=0),

2016-08-02T19:16:07.239+0800 I CONTROL  [initandlisten]

2016-08-02T19:16:07.239+0800 I CONTROL  [initandlisten] ** WARNING: soft rlimits too low. Number of files is 256, should be at least 1000

2016-08-02T19:16:07.239+0800 I FTDC     [initandlisten] Initializing full-time diagnostic data capture with directory '/data/db/diagnostic.data'

2016-08-02T19:16:07.239+0800 I NETWORK  [HostnameCanonicalizationWorker] Starting hostname canonicalization worker

2016-08-02T19:16:07.390+0800 I NETWORK  [initandlisten] waiting for connections on port 27017

8:此時打開瀏覽器,輸入下述地址:

http://127.0.0.1:27017/

出現如下所示的頁面也代表啟動成功。

It looks like you are trying to access MongoDB over HTTP on the native driver port.



天啦?!瓦@些吧~

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚洲午夜精品一区二区_中文无码日韩欧免_久久香蕉精品视频_欧美主播一区二区三区美女