本篇內(nèi)容介紹了“Ubuntu下MongoDB的安裝方法”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)主營(yíng)政和網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,手機(jī)APP定制開發(fā),政和h5小程序開發(fā)搭建,政和網(wǎng)站營(yíng)銷推廣歡迎政和等地區(qū)企業(yè)咨詢
下載mongodb源碼,并解壓:
wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-4.0.11.tgz tar -zxvf mongodb-linux-x86_64-ubuntu1604-4.0.11.tgz
創(chuàng)建mongo專屬目錄,拷貝bin下文件到mongodb目錄下bin中:
mkdir /usr/local/mongodb cd /usr/local/mongodb mkdir bin cp .../mongodb-linux-x86_64-ubuntu1604-4.0.11/bin/* ./bin/
創(chuàng)建數(shù)據(jù)庫(kù)文件目錄、日志目錄、配置文件:
mkdir data touch mongodb.log touch mongodb.conf
配置文件內(nèi)容:
dbpath=/usr/local/mongodb/data logpath=/usr/local/mongodb/mongodb.log logappend=true journal=true fork=true bind_ip = 127.0.0.1 port = 27017 noauth = true #auth = true
將mongo添加path:
#打開profile vi /etc/profile #輸入下面內(nèi)容: MONGO_DB="/usr/local/mongodb" PATH=$MONGO_DB/bin:$PATH: export PATH #加載配置 source /etc/profile
啟動(dòng)mongodb:
/usr/local/mongodb/bin/mongod --config /usr/local/mongodb/mongodb.conf
#啟動(dòng)后會(huì)看到: about to fork child process, waiting until server is ready for connections. forked process: 1361 child process started successfully, parent exiting
“Ubuntu下mongodb的安裝方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!