本文實(shí)例講述了mongodb數(shù)據(jù)庫下載、安裝、啟動(dòng)、連接操作。分享給大家供大家參考,具體如下:
簡(jiǎn)介:
MongoDB 是一個(gè)基于分布式文件存儲(chǔ)的數(shù)據(jù)庫。由 C++ 語言編寫。旨在為 WEB 應(yīng)用提供可擴(kuò)展的高性能數(shù)據(jù)存儲(chǔ)解決方案。
MongoDB 是一個(gè)介于關(guān)系數(shù)據(jù)庫和非關(guān)系數(shù)據(jù)庫之間的產(chǎn)品,是非關(guān)系數(shù)據(jù)庫當(dāng)中功能最豐富,最像關(guān)系數(shù)據(jù)庫的。
1、下載
從官網(wǎng)下載壓縮包,
官網(wǎng)地址:https://www.mongodb.com/download-center/v2/community。
下載命令:
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.0.3.tgz
2、解壓
tar zxvf mongodb-linux-x86_64-rhel70-4.0.3.tgz
#把目錄移動(dòng)到想放的地方
rm -rf /usr/local/mongodb/
mv mongodb-linux-x86_64-rhel70-4.0.3 /usr/local/mongodb
目錄介紹:
3、啟動(dòng)服務(wù)
MongoDB的數(shù)據(jù)存儲(chǔ)在data目錄的db目錄下,但是這個(gè)目錄在安裝過程不會(huì)自動(dòng)創(chuàng)建,所以你需要手動(dòng)創(chuàng)建data目錄及db目錄。
注意:
(1)/data/db 是 MongoDB 默認(rèn)的啟動(dòng)的數(shù)據(jù)庫路徑,自定義指定路徑使用參數(shù)--dbpath來配置。
(2)創(chuàng)建目錄后注意檢查目錄權(quán)限,否則會(huì)啟動(dòng)失敗。
(3)由于mongodb比較占用磁盤空間,查看可用空間來配置數(shù)據(jù)和日志存儲(chǔ)位置(df -h),要預(yù)留4G左右,如果啟動(dòng)時(shí)加上--smallfiles選項(xiàng),將只占用400M左右。
啟動(dòng):
[test@localhost bin]$ ./mongod --dbpath=/mongodb/db --logpath=/mongodb/log/mongodb.log --fork --port=27017
2018-10-16T13:35:44.345+0800 I CONTROL [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'
about to fork child process, waiting until server is ready for connections.
forked process: 1415
child process started successfully, parent exiting
參數(shù)解釋:
--dbpath 數(shù)據(jù)存儲(chǔ)目錄
--logpath 日志存儲(chǔ)目錄
--fork 以后臺(tái)進(jìn)程運(yùn)行
4、連接服務(wù)
[test@localhost bin]$ ./mongo
MongoDB shell version v4.0.3
connecting to: mongodb://127.0.0.1:27017
Implicit session: session { "id" : UUID("65e265a1-bb45-4842-9c1b-b6171dc5d178") }
MongoDB server version: 4.0.3
....
>
>show databases;
admin 0.000GB
config 0.000GB
local 0.000GB
希望本文所述對(duì)大家MongoDB數(shù)據(jù)庫程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- Go語言入門教程之基礎(chǔ)語法快速入門
- go語言入門環(huán)境搭建及GoLand安裝教程詳解
- Django框架模板用法入門教程
- django-allauth入門學(xué)習(xí)和使用詳解
- 入門學(xué)習(xí)Go的基本語法