mongodb的安裝:
2.vim /etc/profile修改環境變數:末尾新增
export path=$path:/home/no4/mongodb/bin
3.source /etc/profile
避免每次都要使用source /etc/profile使環境變數檔案生效的方法:
sudo su
vim ~/.bashrc
末尾新增source /etc/profile
4.新建配置檔案mongod.conf
systemlog:
destination: file
path: "/home/no4/mongodata/log/mongod.log"
storage:
dbpath: "/home/no4/mongodata/db"
journal:
enabled: true
processmanagement:
fork: true
net:
bindip: localhost
port: 27017
5.在配置檔案所指定的位置建立對應的資料夾
6.mongod -f /home/no4/mongodb/mongod.conf命令啟動mongodb伺服器,正常輸出如下:
root@no4-default-string:/home/no4# mongod -f ./mongodb/mongod.conf
about to fork child process, waiting until server is ready for connections.
forked process: 11330
child process started successfully, parent exiting
如果是這樣:
root@no4-default-string:/home/no4# mongod -f ./mongodb/mongod.conf
about to fork child process, waiting until server is ready for connections.
forked process: 11306
error: child process failed, exited with 48
to see additional information in this output, start without the "--fork" option.
一般是因為之前已經啟動過了mongodb,使用ps -ef|grep mongod查詢mongod相關程序,然後殺掉後再重試。
7.輸入mongo連線伺服器,再輸入show dbs檢視資料庫,正常輸出如下:
> show dbs
admin 0.000gb
config 0.000gb
local 0.000gb
Ubuntu16 04下MongoDB的安裝和使用
sudo apt key adv keyserver hkp recv 0c49f3730359a14518585931bc711f9ba15703c6 下面命令針對ubuntu16.04版本,在其他ubuntu版本系統請檢視mongodb官網 echo deb arch amd64,arm64 x...
Ubuntu下執行MongoDB碰到的乙個問題
在安裝完mongodb後,執行.bin mongod失敗,報了乙個錯誤 網上查了很多方法,但都與我的沒有關係,無法解決我的問題。其實產生這個錯誤的原因有很多,而且千奇百怪,但歸根到底其實是許可權的問題,建議檢查對mongodb的各個許可權設定有沒有都設定了,或者還可能是路徑錯了,可以檢查一下有沒有漏...
在Ubuntu下安裝mongodb與nodejs
今天在阿里雲的服務裡搭建mongodb與nodejs。在安裝過程中遇到很多問題,感謝 的指導,特此總結下。同網上的教程不太一樣,我下的都是直接使用的版本,不需要先.configure再make什麼什麼的。首先來說node apt get update sudo apt get install nod...