CentOS 7快速安裝Mongodb詳解

大雄45發表於2021-09-23
導讀 MongoDB 是由C++語言編寫的,是一個基於分散式檔案儲存的開源資料庫系統。Mongodb目前應用也比較多,維護也相對簡單。

CentOS 7快速安裝Mongodb詳解CentOS 7快速安裝Mongodb詳解

環境介紹

作業系統:  7

CentOS 7快速安裝Mongodb詳解CentOS 7快速安裝Mongodb詳解

下載、安裝

在mongodb的官網可以直接下載到對應的rpm包,然後使用yum進行安裝。

CentOS 7快速安裝Mongodb詳解CentOS 7快速安裝Mongodb詳解

yum -y localinstall mongodb-org-mongos-4.4.8-1.el7.x86_64.rpm  mongodb-org-server-4.4.8-1.el7.x86_64.rpm  mongodb-org-shell-4.4.8-1.el7.x86_64.rpm
啟動
systemctl enable mongod
systemctl start mongod

檢視啟動檔案

systemctl cat mongod
[Unit]
Description=MongoDB Database Server
Documentation=
After=network-online.target
Wants=network-online.target
 
[Service]
User=mongod
Group=mongod
Environment="OPTIONS=-f /etc/mongod.conf"
EnvironmentFile=-/etc/sysconfig/mongod
ExecStart=/usr/bin/mongod $OPTIONS
ExecStartPre=/usr/bin/mkdir -p /var/run/mongodb
ExecStartPre=/usr/bin/chown mongod:mongod /var/run/mongodb
ExecStartPre=/usr/bin/chmod 0755 /var/run/mongodb
PermissionsStartOnly=true
PIDFile=/var/run/mongodb/mongod.pid
Type=forking
# file size
LimitFSIZE=infinity
# cpu time
LimitCPU=infinity
# virtual memory size
LimitAS=infinity
# open files
LimitNOFILE=64000
# processes/threads
LimitNPROC=64000
# locked memory
LimitMEMLOCK=infinity
# total threads (user+kernel)
TasksMax=infinity
TasksAccounting=false
# Recommended limits for mongod as specified in
# 
 
[Install]
WantedBy=multi-user.target

可以看出資料目錄檔案/var/run/mongodb,配置檔案是/etc/mongod.conf

設定密碼驗證

預設是沒有設定密碼,可以直接輸入mongo 就可以直接登陸shell進行操作。

mongo

建立管理使用者

use admin
db.createUser({user:"root",pwd:"opcai.TOP",roles:["root"]})

修改配置檔案

vim /etc/mongod.conf

配置security啟用驗證。

...
security:
  authorization: enabled
...

重啟服務生效

systemctl restart mongod
總結

Mongodb目前應用也比較多,維護也相對簡單。

原文來自:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2793269/,如需轉載,請註明出處,否則將追究法律責任。

相關文章