rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm 安裝了epel源 但 yum -y install erlang 的時候報錯 錯誤信息如下: 這就表明你需要更新CA證書了,那麼只需要更新 ...
rpm
-
ivh http:
/
/
dl.fedoraproject.org
/
pub
/
epel
/
6
/
i386
/
epel
-
release
-
6
-
8.noarch
.rpm 安裝了epel源
但 yum
-
y install erlang 的時候報錯
錯誤信息如下:
這就表明你需要更新CA證書了,那麼只需要更新CA證書就可以,不過在此同時需要臨時禁用epel源並更新就可以了,命令如下:
yum --disablerepo=epel -y update ca-certificates
RabbitMQ安裝
1 2 3 4 5 6 7 8 |
安裝配置epel源
$ rpm - ivh http: / / dl.fedoraproject.org / pub / epel / 6 / i386 / epel - release - 6 - 8.noarch .rpm
更新ca證書
$ yum --disablerepo=epel -y update ca-certificates 安裝erlang
$ yum - y install erlang
安裝RabbitMQ
$ yum - y install rabbitmq - server
|