您好,登錄后才能下訂單哦!
本篇內容介紹了“Ubuntu下mongodb的安裝方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
下載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
創建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/
創建數據庫文件目錄、日志目錄、配置文件:
mkdir data touch mongodb.log touch mongodb.conf
配置文件內容:
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 #輸入下面內容: MONGO_DB="/usr/local/mongodb" PATH=$MONGO_DB/bin:$PATH: export PATH #加載配置 source /etc/profile
啟動mongodb:
/usr/local/mongodb/bin/mongod --config /usr/local/mongodb/mongodb.conf
#啟動后會看到: about to fork child process, waiting until server is ready for connections. forked process: 1361 child process started successfully, parent exiting
“Ubuntu下mongodb的安裝方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。