今天先講在 Server 中如何操作 MongoDB
一樣開啟虛擬機,
我們在先前已經有先安裝過 MongoDB 了,因此,在 Ubuntu Server 中預設是開機啟動的
登入虛擬機吧~
登入虛擬機後,我們要進入 MongoDB,必須使用 mongo 這個 MongoDB Shell
$ mongo MongoDB shell version: 2.6.4 connecting to: test Welcome to the MongoDB shell. For interactive help, type "help". For more comprehensive documentation, see http://docs.mongodb.org/ Questions? Try the support group http://groups.google.com/group/mongodb-user > 此時會發現輸入指令的地方變成了 > 表示我們已經在 mongodb 裡面了
為什麼不需要帳號密碼即可進入 MongoDB 呢,因為 MongoDB 預設是不需要做登入的
並且加上預設只能由本機存取,也就是說,外部連入的 IP 是進不了 MongoDB 的
這部分後面會再作說明。
傳統的 Table 在 MongoDB 中,稱之為 Collection