Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon Linux 2 OpenVPN client package unavailable?

When I try to run sudo yum install openvpn on an Amazon Linux 2 instance that I just created, I receive the message

No package openvpn available

Do I need to add a package repository? I don't find mention of needing to do so anywhere.

like image 819
Josh Russo Avatar asked Mar 06 '20 22:03

Josh Russo


1 Answers

Its in epel. To install it on AL2:

# setup epel
sudo amazon-linux-extras install epel

# and

sudo yum install openvpn
like image 140
Marcin Avatar answered Sep 22 '22 12:09

Marcin