{"id":1868,"date":"2023-09-15T12:30:00","date_gmt":"2023-09-15T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1868"},"modified":"2023-09-13T14:20:47","modified_gmt":"2023-09-13T19:20:47","slug":"how-to-enable-proxy-settings-for-yum-command-on-almalinux-9","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/","title":{"rendered":"How to Enable Proxy Settings for Yum Command on AlmaLinux 9"},"content":{"rendered":"\n<p>Yum is a package manager <a href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-python-on-ubuntu\/\" title=\"\">written in Python<\/a> used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. <\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Sometimes the files that we need to download and access are not accessible directly on remote servers, and we need to configure a proxy so we can download them on our machine. That is why we need to configure Yum to use a proxy server.<\/p>\n\n\n\n<p>Enabling proxy settings for Yum is a straightforward process that may take up to 5 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with AlmaLinux 9 as OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>We assume that you have a fresh installation of AlmaLinux 9, so let&#8217;s first update the system packages to their latest versions available:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y &amp;&amp; sudo dnf upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Explaining the Proxy settings<\/h2>\n\n\n\n<p>Before we enable the proxy settings, we will explain them in a couple of sentences:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;strong&gt;proxy&lt;\/strong&gt; is the URL of the proxy server Yum will use along with the TCP port number.\n\n&lt;strong&gt;proxy_username&lt;\/strong&gt; is the proxy server username for the Proxy URL. This is optional and sometimes it is unset.\n\n&lt;strong&gt;proxy_password&lt;\/strong&gt; is the password for the proxy_username, and if the username is unset than we do not have a password. It is an optional field as well.\n\n&lt;strong&gt;logfile&lt;\/strong&gt; is an essential field and we must declare it so we can read the errors if they occur when enabling the proxy.\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Enable Proxy Settings<\/h2>\n\n\n\n<p>To enable proxy settings for the <a href=\"https:\/\/access.redhat.com\/solutions\/9934\" title=\"\">Yum command<\/a>, open the file <strong>\/etc\/yum.conf<\/strong> and edit it to look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[main]\n\ncachedir=\/var\/cache\/yum\/$basearch\/$releasever\nkeepcache=0\ndebuglevel=2\ntolerant=1\nerrorlevel=1\nlogfile=\/var\/log\/yum.log\nexactarch=1\nobsoletes=1\ngpgcheck=1\nplugins=1\n\nproxy=http:\/\/&lt;strong&gt;YourDomainProxy.com&lt;\/strong&gt;:&lt;strong&gt;TCP_Port&lt;\/strong&gt;\nproxy_username=&lt;strong&gt;ProxyUsername&lt;\/strong&gt;\nproxy_password=&lt;strong&gt;YourStrongPasswordHere&lt;\/strong&gt;\n<\/pre>\n\n\n\n<p>Save the file, close it and update the system.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum update -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Enable Proxy Settings for a Single User<\/h2>\n\n\n\n<p>Let&#8217;s say that we need proxy settings only for specific users. To do that, you only need to add the following lines of code to the user&#8217;s shell profile:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">http_proxy=\"http:\/\/&lt;strong&gt;YourDomainProxy.com&lt;\/strong&gt;:&lt;strong&gt;TCP_Port&lt;\/strong&gt;\"\nexport http_proxy<\/pre>\n\n\n\n<p>If there is proxy_username and proxy_password set, then it will look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">http_proxy=\"http:\/\/&lt;strong&gt;ProxyUsername&lt;\/strong&gt;:&lt;strong&gt;YourStrongPasswordHere&lt;\/strong&gt;@&lt;strong&gt;YourDomainProxy.com&lt;\/strong&gt;:&lt;strong&gt;TCP_Port&lt;\/strong&gt;\nexport http_proxy<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Test Settings<\/h2>\n\n\n\n<p>Once you configure the proxy settings for yum, you can easily test them by searching some packages. For example, we will search the Exim package:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">yum search exim<\/pre>\n\n\n\n<p>If everything is set properly, you should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# yum search exim\nexim.x86_64 : The exim mail transfer agent\nexim-greylist.x86_64 : Example configuration for greylisting using Exim\nexim-mon.x86_64 : X11 monitor application for Exim\nexim-mysql.x86_64 : MySQL lookup support for Exim\nexim-pgsql.x86_64 : PostgreSQL lookup support for Exim\n<\/pre>\n\n\n\n<p>We trust that you found our directions on how to enable proxy settings for Yum Command on AlmaLinux 9 simple and practical. <\/p>\n\n\n\n<p>Now, we&#8217;d like to get your input. <\/p>\n\n\n\n<p>Is there an aspect you feel we haven&#8217;t covered or a step that&#8217;s unclear and needs more detail? Are there other topics or guides you wish to see from us? <\/p>\n\n\n\n<p>We&#8217;re eager to hear your thoughts. Please leave a comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages.<\/p>\n","protected":false},"author":2,"featured_media":1873,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[260,13],"tags":[232,282,283],"class_list":["post-1868","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-tutorials","tag-almalinux","tag-proxy-settings","tag-yum-command"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Enable Proxy Settings for Yum Command on AlmaLinux 9 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. Sometimes\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable Proxy Settings for Yum Command on AlmaLinux 9 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. Sometimes\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Enable Proxy Settings for Yum Command on AlmaLinux 9\",\"datePublished\":\"2023-09-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/\"},\"wordCount\":354,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp\",\"keywords\":[\"almalinux\",\"proxy settings\",\"yum command\"],\"articleSection\":[\"Linux\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/\",\"name\":\"How to Enable Proxy Settings for Yum Command on AlmaLinux 9 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp\",\"datePublished\":\"2023-09-15T17:30:00+00:00\",\"description\":\"Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. Sometimes\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp\",\"width\":742,\"height\":372,\"caption\":\"how to enable proxy settings for yum command on almalinux 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable Proxy Settings for Yum Command on AlmaLinux 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Enable Proxy Settings for Yum Command on AlmaLinux 9 | LinuxCloudVPS Blog","description":"Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. Sometimes","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable Proxy Settings for Yum Command on AlmaLinux 9 | LinuxCloudVPS Blog","og_description":"Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. Sometimes","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2023-09-15T17:30:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Enable Proxy Settings for Yum Command on AlmaLinux 9","datePublished":"2023-09-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/"},"wordCount":354,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp","keywords":["almalinux","proxy settings","yum command"],"articleSection":["Linux","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/","name":"How to Enable Proxy Settings for Yum Command on AlmaLinux 9 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp","datePublished":"2023-09-15T17:30:00+00:00","description":"Yum is a package manager written in Python used for getting, installing, querying, and managing Red Hat Enterprise Linux RPM software packages. Sometimes","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9.webp","width":742,"height":372,"caption":"how to enable proxy settings for yum command on almalinux 9"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-proxy-settings-for-yum-command-on-almalinux-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable Proxy Settings for Yum Command on AlmaLinux 9"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1868","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1868"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1868\/revisions"}],"predecessor-version":[{"id":2007,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1868\/revisions\/2007"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1873"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1868"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1868"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1868"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}