?window 安裝
不做過多贅述,還是比較簡單的 http://www.runoob.com/mongodb/mongodb-window-install.html
linux 下安裝??
參照MongoDB英文版文檔編寫
Install MongoDB Community Edition on Ubuntu 18.04
Overview
使用本教程使用.deb軟件包在LTS Ubuntu Linux系統(tǒng)上安裝MongoDB Community Edition脓匿。
重要
由Ubuntu提供的非官方mongodb包不是由MongoDB維護的渔隶。您應(yīng)該始終使用官方的MongoDB mongodb-org軟件包侧啼,它們與最新的主要和次要MongoDB版本保持同步。
平臺支持
MongoDB僅提供64位LTS(長期支持)Ubuntu版本的軟件包。例如沟堡,14.04 LTS(可信),16.04 LTS(xenial)矢空,依此類推航罗。這些包可能與其他Ubuntu版本一起使用,但是妇多,它們不受支持伤哺。
Ubuntu 12.04 LTS(精確)不再支持MongoDB 3.4.15。
適用于IBM POWER SYSTEMS的UBUNTU 16.04所需的包更新
由于Ubuntu 16.04 for POWER上舊版glibc軟件包中存在鎖定缺陷錯誤,因此在運行MongoDB之前立莉,必須將glibc軟件包升級到至少glibc 2.23-0ubuntu5绢彤。具有較舊版本的glibc軟件包的系統(tǒng)將因隨機內(nèi)存損壞而遇到數(shù)據(jù)庫服務(wù)器崩潰和不當(dāng)行為,并且不適合MongoDB的生產(chǎn)部署
Packages
MongoDB在自己的存儲庫中提供官方支持的包蜓耻。 此存儲庫包含以下包:
? ? mongodb-org-server軟件包提供了一個初始化腳本茫舶,該腳本使用/etc/mongod.conf配置文件啟動mongod。
有關(guān)使用此初始化腳本的詳細(xì)信息刹淌,請參閱運行MongoDB Community Edition饶氏。
這些程序包與Ubuntu提供的mongodb,mongodb-server和mongodb-clients程序包沖突有勾。
默認(rèn)情況下疹启,軟件包提供的默認(rèn)/etc/mongod.conf配置文件的bind_ip設(shè)置為127.0.0.1。 在初始化副本集之前蔼卡,根據(jù)您的環(huán)境需要修改此設(shè)置喊崖。
Install MongoDB Community Edition
MongoDB僅提供64位LTS(長期支持)Ubuntu版本的軟件包。 例如雇逞,14.04 LTS(可信)荤懂,16.04 LTS(xenial),依此類推塘砸。 這些包可能與其他Ubuntu版本一起使用节仿,但是,它們不受支持掉蔬。
Ubuntu 12.04 LTS(精確)不再支持MongoDB 3.4.15廊宪。
Import the public key used by the package management system.
Import the public key used by the package management system.
The Ubuntu package management tools (i.e. dpkg and apt) ensure package consistency and authenticity by requiring that distributors sign packages with GPG keys. Issue the following command to import the MongoDB public GPG Key:
? ? sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6
創(chuàng)建 MongoDB list 文件
Create the /etc/apt/sources.list.d/mongodb-org-3.4.list list file using the command appropriate for your version of Ubuntu:
Ubuntu 14.04
? ? echo "deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
Ubuntu 16.04
? ? echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
重載package
Issue the following command to reload the local package database:
? ? sudo apt-get update
安裝 MongoDB packages
Install the latest stable version of MongoDB.
Issue the following command:
? ? sudo apt-get install -y mongodb-org
運行n MongoDB社區(qū)版本
MongoDB的默認(rèn)數(shù)據(jù)存放在?/var/lib/mongodb
MongoDB日志默認(rèn)存放在/var/log/mongodb
你也可以通過/etc/mongod.conf自行定義路徑和各種信息
打開 MongoDB
? ? ? ? sudo service mongod start
驗證MongoDB 是否開啟成功
查看日志文件信息?/var/log/mongodb/mongod.log有下列信息則為成功
? ? ? ?waiting for connections on port 27017
提示:端口號可以在 /etc/mongod.conf 中設(shè)置, 27017 是默認(rèn)的.
停止MongoDB.
sudo service mongod stop
重啟 MongoDB.
? ? sudo service mongod restart
卸載 MongoDB Community Edition
停止 MongoDB.
? ? sudo service mongod stop
移除Packages.
? ? sudo apt-get purge mongodb-org*
刪除數(shù)據(jù)
? ? sudo rm -r /var/log/mongodb
? ? sudo rm -r /var/lib/mongodb
配置文件mongod.conf示例
mongod.conf 具體示例 參見文檔
? ? # for documentation of all options, see:
? ? #? http://docs.mongodb.org/manual/reference/configuration-options/
? ? # Where and how to store data.
? ? storage:
? ? ? dbPath: /var/lib/mongodb? ? #數(shù)據(jù)庫路徑
? ? ? journal:
? ? ? ? enabled: true
? ? #? engine:
? ? #? mmapv1:
? ? #? wiredTiger:
? ? # where to write logging data.
? ? systemLog:
? ? ? destination: file
? ? ? logAppend: true
? ? ? path: /var/log/mongodb/mongod.log? #日志路徑
? ? # network interfaces
? ? net:
? ? ? port: 27017
? ? ? bindIp: 0.0.0.0 #允許訪問的ip 地址? 0.0.0.0代表都可以 指定ip示例 192.168.10.11,192.168.10.13
? ? #processManagement:
? ? #security:
? ? #operationProfiling:
? ? #replication:
? ? #sharding:
? ? ## Enterprise-Only Options:
? ? #auditLog:
? ? #snmp:
MongoDB的在服務(wù)自啟動
將mongodb啟動項目追加入/etc/rc.local保證mongodb在服務(wù)器開機時啟動
? ? #!/bin/sh -e
? ? #
? ? # rc.local
? ? #
? ? # This script is executed at the end of each multiuser runlevel.
? ? # Make sure that the script will "exit 0" on success or any other
? ? # value on error.
? ? #
? ? # In order to enable or disable this script just change the execution
? ? # bits.
? ? #
? ? # By default this script does nothing.
? ? touch /var/lock/subsys/local
? ? sudo service mongod start
? ? exit 0
本文參見英文文檔編寫!英文文檔連接地址:https://docs.mongodb.com/v3.4/