mongodb3.x版本有好多新功能,關(guān)于這方面參考官網(wǎng)即可。。。
為定結(jié)等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及定結(jié)網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)、定結(jié)網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!mongodb3.x配置文件使用yaml格式,和salt以及ansible格式一樣一樣滴,哈哈。。。
下載mongodb3.2版本
[root@mongo-test ~]# wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel62-3.2.3.tgz解壓mongodb以及改名mongodb
[root@mongo-test ~]# tar fxz mongodb-linux-x86_64-rhel62-3.2.3.tgz [root@mongo-test ~]# ll mongodb-linux-x86_64-rhel62-3.2.3 total 100 drwxr-xr-x 2 root root 4096 Mar 5 15:10 bin -rw-r--r-- 1 root root 34520 Feb 18 03:42 GNU-AGPL-3.0 -rw-r--r-- 1 root root 16726 Feb 18 03:42 MPL-2 -rw-r--r-- 1 root root 1359 Feb 18 03:42 README -rw-r--r-- 1 root root 35910 Feb 18 03:42 THIRD-PARTY-NOTICES [root@mongo-test ~]# mv mongodb-linux-x86_64-rhel62-3.2.3 /usr/local/mongodbmongodb環(huán)境變量配置
vim /etc/profile export PATH=$PATH:/usr/local/mongodb/bin加載環(huán)境配置文件
[root@mongo-test ~]# source /ect/profile創(chuàng)建mongodb數(shù)據(jù)目錄
[root@mongo-test ~]# mkdir /data [root@mongo-test ~]# mkdir /data/{logs,mongo-data,config}//logs存放日志目錄,mongo-data存放數(shù)據(jù),config存放配置文件 [root@mongo-test ~]# tree /data/ /data/ ├── config ├── logs └── mongo-data 3 directories, 0 filesmongod配置文件如下:
[root@mongo-test config]# cat mongod.conf systemLog: destination: file path: /data/logs/mongod.log logAppend: true processManagement: fork: true pidFilePath: "/data/mongo-data/mongod.pid" net: port: 27017 http: enabled: true storage: dbPath: "/data/mongo-data" engine: wiredTiger wiredTiger: engineConfig: cacheSizeGB: 1 directoryForIndexes: true collectionConfig: blockCompressor: zlib indexConfig: prefixCompression: true journal: enabled: true directoryPerDB: true security: authorization: disable注:現(xiàn)在mongo3.x以后的版本配置文件都是yaml格式的,官方關(guān)于mongo配置文件相關(guān)選項(xiàng)說(shuō)明,https://docs.mongodb.org/manual/reference/configuration-options/#configuration-file
啟動(dòng)mongodb以及查看mongod端口
[root@mongo-test config]# mongod -f mongod.conf about to fork child process, waiting until server is ready for connections. forked process: 17222 child process started successfully, parent exiting [root@mongo-test config]# netstat -ntpl|grep mongod tcp 0 0 0.0.0.0:28017 0.0.0.0:* LISTEN 17222/mongod tcp 0 0 0.0.0.0:27017 0.0.0.0:* LISTEN 17222/mongod登陸mongod實(shí)例,并創(chuàng)建zxl以及在test集合中插入數(shù)據(jù)查詢等等。。。
[root@mongo-test config]# mongo --port 27017 MongoDB shell version: 3.2.3 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 Server has startup warnings: 2016-03-05T22:40:23.212+0800 I CONTROL [initandlisten] ** WARNING: You are running this process as the root user, which is not recommended. 2016-03-05T22:40:23.212+0800 I CONTROL [initandlisten] 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/enabled is 'always'. 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] ** We suggest setting it to 'never' 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/defrag is 'always'. 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] ** We suggest setting it to 'never' 2016-03-05T22:40:23.213+0800 I CONTROL [initandlisten] > show dbs; local 0.000GB > use zxl; switched to db zxl > db.test.insert({name:"haha",age:18}) WriteResult({ "nInserted" : 1 }) > db.test.find() { "_id" : ObjectId("56daf1eacfaf29514f85d236"), "name" : "haha", "age" : 18 }mongod實(shí)例web界面,端口是在原有mongod實(shí)例端口27017加上1000,也就是28017,在上面查看mongod實(shí)例端口可以發(fā)現(xiàn)有28017.。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
分享標(biāo)題:mongodb3.2安裝-創(chuàng)新互聯(lián)
當(dāng)前網(wǎng)址:http://jinyejixie.com/article28/coiejp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、面包屑導(dǎo)航、做網(wǎng)站、定制開(kāi)發(fā)、網(wǎng)站制作、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容