Mac下MongoDB的安裝

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


一:HomeBrew簡介與安裝
github

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

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

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

二:MongoDB安裝ruby

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

brew update

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

brew install mongodb

3:輸入指令,啓動Mongodb
curl

mongod

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

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.



天啦嚕~就這些吧~

相關文章
相關標籤/搜索