I’ve never really done any server admin before, but I’m trying to install certbot on my RHEL 7 server with apache following these instructions. However, when I run sudo yum install python2-certbot-apache
, the command returns
Loaded plugins: enabled_repos_upload, package_upload, product-id, search-disabled-repos, subscription-manager
rhel-7-server-extras-rpms | 2.0 kB 00:00:00
rhel-7-server-optional-rpms | 2.0 kB 00:00:00
rhel-7-server-rh-common-rpms | 2.1 kB 00:00:00
rhel-7-server-rpms | 2.0 kB 00:00:00
rhel-7-server-satellite-tools-6.2-rpms | 2.1 kB 00:00:00
rhel-7-server-satellite-tools-6.3-rpms | 2.1 kB 00:00:00
rhel-7-server-supplementary-rpms | 2.0 kB 00:00:00
No package python2-certbot-apache available.
Error: Nothing to do
Uploading Enabled Repositories Report
Loaded plugins: product-id, subscription-manager
And when I search for the certbot package (sudo yum search certbot
) it returns “no matches found”.
Loaded plugins: enabled_repos_upload, package_upload, product-id, search-disabled-repos, subscription-manager
Warning: No matches found for: certbot
No matches found
Uploading Enabled Repositories Report
Loaded plugins: product-id, subscription-manager
I’d enabled EPEL on the server with sudo subscription-manager repos --enable "rhel-server-optional-rpms" --enable "rhel-server-extras-rpms"
and sudo yum-config-manager --enable rhel-7-server-extras-rpms rhel-7-server-optional-rpms
What am I doing wrong here?