温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Mac下MongoDB的安装

发布时间:2020-06-11 03:48:54 来源:网络 阅读:1822 作者: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