yum:无法在 centos 上安装 openvpn

yum:无法在 centos 上安装 openvpn

我刚刚在 AWS 上安装了 centos 版本。但是我无法安装 openvpn。

当我尝试时:sudo yum -y install openvpn我收到此错误消息:

Geladene Plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.ratiokontakt.de
 * centosplus: mirror.fra10.de.leaseweb.net
 * extras: mirror.imt-systems.com
 * updates: mirror.fra10.de.leaseweb.net
Kein Paket openvpn verfügbar.
Fehler: Nichts zu tun

抱歉,这是德语的(另一件让我困扰的事情)。但大致翻译如下:

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
     * base: mirror.ratiokontakt.de
     * centosplus: mirror.fra10.de.leaseweb.net
     * extras: mirror.imt-systems.com
     * updates: mirror.fra10.de.leaseweb.net
No package openvpn available.
Error: Nothing to do

实际上相当奇怪。我不明白为什么它什么也没找到。

我该如何解决这个恼人的问题呢?

答案1

OpenVPN 无法通过 cent os 中的标准存储库获得。它可通过 EPEL 存储库获得。首先安装 EPEL 存储库,然后安装 open vpn。

步骤 1:更新 centos 并启用 EPEL 存储库

在 CentOS 6 上:

sudo yum update -y
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

在 CentOS 7 上:

sudo yum update -y
yum install epel-release

第 2 步:安装 openvpn

yum install -y openvpn easy-rsa

来源 : https://www.quickservers.com/en/how-to-install-openvpn-on-centos.php https://www.digitalocean.com/community/tutorials/how-to-set-up-and-configure-an-openvpn-server-on-centos-7

相关内容