溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

在SLES 11.3上安裝MongoDB Enterprise 3.4.6

發(fā)布時(shí)間:2020-08-07 23:05:38 來(lái)源:ITPUB博客 閱讀:112 作者:18141908802 欄目:關(guān)系型數(shù)據(jù)庫(kù)
///////////////////
// MongoDB安裝
///////////////////
這里采用rpm包離線安裝的方法,并非官方文檔中介紹使用http的聯(lián)網(wǎng)安裝方法,因?yàn)楹芏嗲闆r下服務(wù)器是直連外網(wǎng)會(huì)有很多限制
===從MongoDB官網(wǎng)下載四個(gè)rpm包,網(wǎng)址是https://repo.mongodb.com/zypper/suse/11/mongodb-enterprise/3.4/x86_64/RPMS/
mongodb-enterprise-mongos-3.4.6-1.suse11.x86_64.rpm
mongodb-enterprise-server-3.4.6-1.suse11.x86_64.rpm
mongodb-enterprise-shell-3.4.6-1.suse11.x86_64.rpm
mongodb-enterprise-tools-3.4.6-1.suse11.x86_64.rpm


===從MongoDB官網(wǎng)下載public key,網(wǎng)址是https://www.mongodb.org/static/pgp/server-3.4.asc
server-3.4.asc     


===上面的5個(gè)文件存放至目錄下
/mongosoft


===SuSE上建立repository
zypper ar file:///iso1 iso1       <---SuSE的安裝介質(zhì)在/iso1目錄下


zypper lr
# | Alias                                            | Name                                             | Enabled | Refresh
--+--------------------------------------------------+--------------------------------------------------+---------+--------
1 | SUSE-Linux-Enterprise-Server-11-SP3 11.3.3-1.138 | SUSE-Linux-Enterprise-Server-11-SP3 11.3.3-1.138 | Yes     | No     
2 | iso1                                             | iso1                                             | Yes     | No     


===SuSE上安裝所需要的包
zypper install cyrus-sasl cyrus-sasl-plain cyrus-sasl-gssapi krb5 libcurl4 libldap-2_4-2 libopenssl1_0_0 libsensors4 libsnmp30 libpcap1 libwrap0 rpm


===導(dǎo)入MongoDB public key
rpm --import /mongosoft/server-3.4.asc
注:如果不導(dǎo)入public key,下面在使用zypper安裝的時(shí)候會(huì)有類似報(bào)錯(cuò),但是不影響使用
warning: /var/cache/zypp/packages/_tmpRPMcache_/mongodb-enterprise-mongos-3.4.6-1.suse11.x86_64.rpm: Header V3 RSA/SHA1 signature: NOKEY, key ID a15703c6 


===安裝mongod daemon
mongo1990:/mongosoft # zypper install mongodb-enterprise-server-3.4.6-1.suse11.x86_64.rpm
Loading repository data...
Reading installed packages...
Resolving package dependencies...


The following NEW packages are going to be installed:
  mongodb-enterprise-server net-snmp perl-SNMP 


The following package is not supported by its vendor:
  mongodb-enterprise-server 


3 new packages to install.
Overall download size: 15.9 MiB. After the operation, additional 54.8 MiB will be used.
Continue? [y/n/?] (y): y      
Retrieving package perl-SNMP-5.4.2.1-8.12.16.1.x86_64 (1/3), 179.0 KiB (609.0 KiB unpacked)
Retrieving package net-snmp-5.4.2.1-8.12.16.1.x86_64 (2/3), 370.0 KiB (1.0 MiB unpacked)
Retrieving package mongodb-enterprise-server-3.4.6-1.suse11.x86_64 (3/3), 15.4 MiB (53.2 MiB unpacked)
Installing: perl-SNMP-5.4.2.1-8.12.16.1 [done]
Installing: net-snmp-5.4.2.1-8.12.16.1 [done]
Additional rpm output:
Updating etc/sysconfig/net-snmp...




Retrieving package mongodb-enterprise-server-3.4.6-1.suse11.x86_64 (1/3), 15.4 MiB (53.2 MiB unpacked)
Installing: mongodb-enterprise-server-3.4.6-1.suse11 [done]
Additional rpm output:
insserv: warning: script 'K01scalarizr' missing LSB tags
insserv: warning: script 'S01scalr-upd-client' missing LSB tags
insserv: warning: script 'scalr-upd-client' missing LSB tags
insserv: warning: script 'scalarizr' missing LSB tags
insserv: Service syslog is missed in the runlevels 4 to use service ftpd
mongod                    0:off  1:off  2:on   3:on   4:off  5:on   6:off


===安裝mongos daemon
mongo1990:/mongosoft # zypper install mongodb-enterprise-mongos-3.4.6-1.suse11.x86_64.rpm
Loading repository data...
Reading installed packages...
Resolving package dependencies...


The following NEW package is going to be installed:
  mongodb-enterprise-mongos 


The following package is not supported by its vendor:
  mongodb-enterprise-mongos 


1 new package to install.
Overall download size: 8.6 MiB. After the operation, additional 29.7 MiB will be used.
Continue? [y/n/?] (y): y
Retrieving package mongodb-enterprise-mongos-3.4.6-1.suse11.x86_64 (1/1), 8.6 MiB (29.7 MiB unpacked)
Retrieving package mongodb-enterprise-mongos-3.4.6-1.suse11.x86_64 (1/1), 8.6 MiB (29.7 MiB unpacked)
Installing: mongodb-enterprise-mongos-3.4.6-1.suse11 [done]
Additional rpm output:


===安裝mongo shell
mongo1990:/mongosoft # zypper install mongodb-enterprise-shell-3.4.6-1.suse11.x86_64.rpm
Loading repository data...
Reading installed packages...
Resolving package dependencies...


The following NEW package is going to be installed:
  mongodb-enterprise-shell 


The following package is not supported by its vendor:
  mongodb-enterprise-shell 


1 new package to install.
Overall download size: 8.8 MiB. After the operation, additional 30.3 MiB will be used.
Continue? [y/n/?] (y): y
Retrieving package mongodb-enterprise-shell-3.4.6-1.suse11.x86_64 (1/1), 8.8 MiB (30.3 MiB unpacked)
Retrieving package mongodb-enterprise-shell-3.4.6-1.suse11.x86_64 (1/1), 8.8 MiB (30.3 MiB unpacked)
Installing: mongodb-enterprise-shell-3.4.6-1.suse11 [done]
Additional rpm output:


===安裝mongo tools
mongo1990:/mongosoft # zypper install mongodb-enterprise-tools-3.4.6-1.suse11.x86_64.rpm
Loading repository data...
Reading installed packages...
Resolving package dependencies...


The following NEW package is going to be installed:
  mongodb-enterprise-tools 


The following package is not supported by its vendor:
  mongodb-enterprise-tools 


1 new package to install.
Overall download size: 47.4 MiB. After the operation, additional 173.6 MiB will be used.
Continue? [y/n/?] (y): y
Retrieving package mongodb-enterprise-tools-3.4.6-1.suse11.x86_64 (1/1), 47.4 MiB (173.6 MiB unpacked)
Retrieving package mongodb-enterprise-tools-3.4.6-1.suse11.x86_64 (1/1), 47.4 MiB (173.6 MiB unpacked)
Installing: mongodb-enterprise-tools-3.4.6-1.suse11 [done]
Additional rpm output:


當(dāng)然還有一個(gè)解壓Tar包的安裝方法,可以參考:https://docs.mongodb.com/manual/tutorial/install-mongodb-enterprise-on-linux,此處不做介紹


/////////////////////////
// mongodb服務(wù)啟動(dòng)與停止
/////////////////////////
mongo1990:~ # service mongod start
Starting mongod:                                                                                                                                             done
mongo1990:~ # service mongod status
Checking for mongod:                                                                                                                                         running
mongo1990:~ # service mongod stop
Stopping mongod:                                                                                                                                             done


/////////////////////////
// mongodb服務(wù)自動(dòng)重啟設(shè)置
/////////////////////////
mongo1990:~ # chkconfig --level 235 mongod on
insserv: warning: script 'K01scalarizr' missing LSB tags
insserv: warning: script 'S01scalr-upd-client' missing LSB tags
insserv: warning: script 'scalr-upd-client' missing LSB tags
insserv: warning: script 'scalarizr' missing LSB tags
insserv: Service syslog is missed in the runlevels 4 to use service ftpd


mongo1990:~ # chkconfig --list | grep mongo  
mongod                    0:off  1:off  2:on   3:on   4:off  5:on   6:off


///////////////////
// 卸載mongodb
///////////////////
sudo service mongod stop


sudo zypper remove $(rpm -qa | grep mongodb-enterprise)


sudo rm -r /var/log/mongodb    <---刪除日志文件
sudo rm -r /var/lib/mongo      <---刪除數(shù)據(jù)文件

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI