linux安装MongoDB 包含arm架构linux
环境准备:
- linux系统: centos7
- 安装MongoDB社区版
下载MongoDB Community Server
下载地址:https://www.mongodb.com/try/download/community
注意下载 package为 tgz的
# 下载MongoDB - wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.4.9.tgz - tar -zxvf mongodb-linux-x86_64-rhel70-4.4.9.tgz
启动MongoDB Server
# 创建dbpath和logpath - mkdir -p /mongodb/data /mongodb/log/mongodb/conf- touch /mongodb/log/mongodb.log # 进入mongodb bin目录,启动mongodb服务
./mongod --port=27017 --dbpath=/mongodb/data --logpath=/mongodb/log/mongodb.log --bind_ip=0.0.0.0 --fork
问题
error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
wget https://www.openssl.org/source/openssl-1.1.0k.tar.gztar xvf openssl-1.1.0k.tar.gzcd openssl-1.1.0l./configmake -j`nproc`sudo make installfind / -name 'libcrypto.so.1.1'echo "/usr/local/lib/" >> /etc/ld.so.confldconfigopenssl version
symbol __cxa_thread_atexit_impl, version GLIBC_2.18 not defined in file libc.so.6 with link time reference
wget http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gztar zxf glibc-2.18.tar.gzcd glibc-2.18/mkdir buildcd build/ .../configure --prefix=/usrmake -j2make install
–dbpath :指定数据文件存放目录
–logpath :指定日志文件,注意是指定文件不是目录
–logappend :使用追加的方式记录日志
–port:指定端口,默认为27017
–bind_ip:默认只监听localhost网卡
–fork: 后台启动
–auth: 开启认证模式
添加环境变量
修改/etc/profile,添加环境变量,方便执行MongoDB命令
# mongodbexport MONGODB_HOME=/______Env/mongodb/mongodbPATH=$PATH:$MONGODB_HOME/bin
然后执行source /etc/profile
重新加载环境变量
利用配置文件启动服务
编辑/mongodb/conf/mongo.conf文件,内容如下:
systemLog:destination: filepath: /mongodb/log/mongodb.log # log pathlogAppend: true # 日志追加storage:dbPath: /mongodb/data # data directoryengine: wiredTiger #存储引擎journal:#是否启用journal日志enabled: true # redo lognet:bindIp: 0.0.0.0port: 27017# portprocessManagement:fork: true
注意:一定要yaml格式
启动mongodb
mongod -f /mongodb/conf/mongo.conf
-f 选项表示将使用配置文件启动mongodb
关闭MongoDB服务
方式1
mongod --port=27017 --dbpath=/mongodb/data --shutdown
方式2
进入mongo shell
use admin db.shutdownServer()