CentOS7/RHEL7-使用yum快速安裝mongodb3.6
CentOS7/RHEL7-使用yum快速安裝mongodb3.6
linux運維菜
百家號09-1222:47
前言
CentOS上安裝epel-release的yum源之後就可以安裝MongoDB,但是版本都是比較老的,如果使用MongoDB官方的yum就可以安裝到比較新版本的MongoDB。
配置yum源
cat > /etc/yum.repos.d/MongoDB.repo <<EOF
[mongodb-org-3.6]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/\$releasever/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
EOF
安裝
yum -y install mongodb-org
建立資料目錄
一般分配到獨立的大分割槽
mkdir -p /data/mongodb/data /data/mongodb/logs
chown mongod.mongod /data/mongodb/data /data/mongodb/logs -R #預設是使用mongod執行的,所以需要修改一下目錄許可權
修改配置檔案
# mongod.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /data/mongodb/logs/mongod.log #修改到我們專門建立的目錄
# Where and how to store data.
storage:
dbPath: /data/mongodb/data #修改到我們專門建立的目錄
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# how the process runs
processManagement:
fork: true # fork and run in background
pidFilePath: /data/mongodb/logs/mongod.pid # location of pidfile
timeZoneInfo: /usr/share/zoneinfo
# network interfaces
net:
port: 27017
#bindIp: 127.0.0.1 # Listen to local interface only, comment to listen on all interfaces.
bindIp: 0.0.0.0 # Listen to local interface only, comment to listen on all interfaces. #修改監聽所有的埠
#security:
# authorization: enabled #這裡是開啟驗證功能,暫時先關閉,等建立完root使用者再開起來進行驗證
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options
#auditLog:
#snmp:
連線MongoDB資料庫
直接使用mongo命令進行連線,預設埠是27017
建立驗證使用者
db.createUser({user:"root",pwd:"rootpassword",roles:[{role:"root",db:"admin"}]})
修改配置檔案
security:
authorization: enabled
新增上驗證,重啟mongd服務
登入驗證
mongo -u root -p rootpassword --authenticationDatabase admin
總結
這樣子就可以擼起MongoDB了,是不是很簡單?