真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

3.Ubuntu安裝MongoDB企業(yè)版

3.Ubuntu安裝MongoDB企業(yè)版

最新內(nèi)容會(huì)在源站更新.轉(zhuǎn)載請(qǐng)保留原文鏈接: http://dashidan.com/article/mongodb/index.html

站在用戶的角度思考問題,與客戶深入溝通,找到松嶺網(wǎng)站設(shè)計(jì)與松嶺網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名申請(qǐng)、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋松嶺地區(qū)。

① 通過安裝包管理系統(tǒng)導(dǎo)入公鑰

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6

② 創(chuàng)建/etc/apt/sources.list.d/mongodb-enterprise.list文件

  • Ubuntu 12.04

echo "deb [ arch=amd64 ] http://repo.mongodb.com/apt/ubuntu precise/mongodb-enterprise/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
  • Ubuntu 14.04

echo "deb [ arch=amd64 ] http://repo.mongodb.com/apt/ubuntu trusty/mongodb-enterprise/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
  • Ubuntu 16.04

echo "deb [ arch=amd64,arm64,ppc64el,s390x ] http://repo.mongodb.com/apt/ubuntu xenial/mongodb-enterprise/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list

如果想安裝指定版本, 修改配置文件名加上版本號(hào), 例安裝Mongodb企業(yè)版2.6版本:

echo "deb http://repo.mongodb.com/apt/ubuntu "$(lsb_release -sc)"/mongodb-enterprise/2.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise-2.6.list
mongoDB提供64位長(zhǎng)期維護(hù)版(LTS)ubuntu包.例如:12.04 LTS, 14.04LTS, 16.04LTS. 這些包在其他ubuntu版本中也可能可以運(yùn)行, 但不提供幫助.

③ 更新本地安裝庫(kù)

sudo apt-get update

④ 安裝mongodb企業(yè)版

安裝mongodb企業(yè)版最新穩(wěn)定版

sudo apt-get install -y mongodb-enterprise

⑤ 開啟mongodb

sudo service mongod start

⑥ 關(guān)閉mongodb

sudo service mongod stop

⑦ 重啟mongodb

sudo service mongod restart

⑧ 卸載mongodb

卸載mongodb需要移除程序, 刪除配置文件, 刪除數(shù)據(jù)和log.

徹底刪除MongoDB

以下步驟會(huì)徹底刪除MongoDB及配置和全部數(shù)據(jù)庫(kù). 這個(gè)過程無(wú)法還原,所以開始前一定要確保所有的數(shù)據(jù)已經(jīng)備份好.

1.停止mongodb

sudo service mongod stop

2.刪除安裝程序

sudo apt-get purge mongodb-enterprise*

3.刪除數(shù)據(jù)目錄和log

sudo rm -r /var/log/mongodb
sudo rm -r /var/lib/mongodb

⑨ 參考文章

 官網(wǎng)文章

 官網(wǎng)文章


本文名稱:3.Ubuntu安裝MongoDB企業(yè)版
鏈接URL:http://weahome.cn/article/pchgeh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部