{"id":2371,"date":"2025-08-15T12:30:00","date_gmt":"2025-08-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2371"},"modified":"2025-06-17T05:18:21","modified_gmt":"2025-06-17T10:18:21","slug":"how-to-enable-ssh-on-almalinux-10","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","title":{"rendered":"How to Enable SSH on AlmaLinux 10"},"content":{"rendered":"\n<div id=\"linux-580478920\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>SSH, or Secure Shell, is a network protocol that enables secure remote access to servers (and other devices, but we will focus on servers) over an insecure network. SSH can be enabled on various Linux OS distributions; however, this blog post will focus on helping it on AlmaLinux 10 OS. However, the procedure is similar to that on any other Linux OS. SSH is an essential tool for system administrators, DevOps engineers, sysadmins, developers, and regular Linux users who need to remotely manage their servers. This post will cover how to install SSH on AlmaLinux 10, including configuration of basic rules, enabling SSH through the Firewall, and testing SSH connections. Understanding how to install and enable SSH on AlmaLinux 10 is a straightforward process that typically takes between 5 and 10 minutes to complete. Let&#8217;s get things working!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running AlmaLinux 10 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\">Step 1. Update your system<\/h2>\n\n\n\n<p>Before installing and enabling SSH, it is a good practice to update the system packages to their latest versions available. To do that, execute the following command in your terminal of AlmaLinux 10:<\/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\">Step 2. Install SSH Server<\/h2>\n\n\n\n<p>Most of the hosting companies are providing the servers with an installed SSH server, but if somehow the SSH server is missing, you can install it with only one command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install openssh-server -y<\/pre>\n\n\n\n<p>Once installed, start and enable the <strong>sshd<\/strong> service for automatic start on system boot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start sshd &amp;&amp; sudo systemctl enable sshd<\/pre>\n\n\n\n<p>To check the status of the service, you can use the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status sshd<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host ~]# sudo systemctl status sshd<br>\u25cf sshd.service - OpenSSH server daemon<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/sshd.service; enabled; preset: enabled)<br>     Active: active (running) since Thu 2025-06-05 17:24:01 CDT; 58s ago<br> Invocation: 709679b8ef3b44cdaba61fea6ec85611<br>       Docs: man:sshd(8)<br>             man:sshd_config(5)<br>   Main PID: 4261 (sshd)<br>      Tasks: 1 (limit: 23175)<br>     Memory: 1M (peak: 1.2M)<br>        CPU: 35ms<br>     CGroup: \/system.slice\/sshd.service<br>             \u2514\u25004261 \"sshd: \/usr\/sbin\/sshd -D [listener] 0 of 10-100 startups\"<\/pre>\n\n\n\n<p>Now, the SSH service is started and enabled. Let&#8217;s proceed to the following paragraphs, where you will learn how to configure some basic settings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Configure SSH Server<\/h2>\n\n\n\n<p>After a fresh installation of the SSH server, some default settings can be edited according to the user&#8217;s needs. For example, the SSH server is typically configured to listen on port 22 by default, which can be easily exposed and may be a target of attacks. To enhance the security of your server, you can modify it by editing the <strong>\/etc\/ssh\/sshd_config<\/strong> SSH configuration file, where all default and future changes are stored.<\/p>\n\n\n\n<p>To change the SSH port 22 to port <strong>3322<\/strong>, for example, you need to open the <strong>\/etc\/ssh\/sshd_config<\/strong> with your favorite editor and make an edit for this line to look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Port 3322<\/pre>\n\n\n\n<p>Save the file, close it, and restart the SSH service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl restart sshd<\/pre>\n\n\n\n<p>After changing the SSH port, we need to enable SSH traffic through this port <strong>3322<\/strong>. We will do that in iptables with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo iptables -A INPUT -p tcp --dport 3322 -j ACCEPT<\/pre>\n\n\n\n<p>Now, let&#8217;s create an SSH user and set a password for it so we can later test the SSH connection:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">adduser lhs<\/pre>\n\n\n\n<p>Once added, let&#8217;s set a strong user password by executing the <strong>passwd lhs<\/strong> command. Your prompt will ask you to type your password twice.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@host lhs]# passwd lhs<br>New password: <strong>YourStrongUserPassword<\/strong><br>Retype new password: <strong>YourStrongUserPassword<\/strong><br>passwd: password updated successfully<\/pre>\n\n\n\n<p>These were the most basic SSH configurations, including changing the SSH port, opening it in the firewall, and creating an SSH user. Now, let&#8217;s proceed to the final step of this blog post, which involves testing the SSH connection.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Test the SSH Connection<\/h2>\n\n\n\n<p>The SSH is enabled, configured, and we have a user to test the SSH connection. To do that, you can use your local terminal or test the connection from the remote server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh lhs@ServerIP -p 3322<\/pre>\n\n\n\n<p>You will need to replace the <strong>ServerIP<\/strong> with the IP address of the server where you configured the SSH server, as described in this post.<\/p>\n\n\n\n<p>That&#8217;s it. You successfully enabled the SSH service on AlmaLinux 10.<\/p>\n\n\n\n<p>If you encounter difficulties with this installation, our Linux administrators will be happy to assist you with any aspect. You need to sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">monthly server management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\" target=\"_blank\" rel=\"noreferrer noopener\">per-incident server support<\/a> plans. Please do not hesitate to contact us at your convenience. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post on how to enable SSH on AlmaLinux 10, please share it with your friends or leave a comment below.<\/p><div id=\"linux-1315694747\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>SSH, or Secure Shell, is a network protocol that enables secure remote access to servers (and other devices, but we will focus on servers) over an insecure network. SSH can be enabled on various Linux OS distributions; however, this blog post will focus on helping it on AlmaLinux 10 OS. However, the procedure is similar [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2377,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[315],"tags":[317,324,65],"class_list":["post-2371","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-almalinux","tag-almalinux-10","tag-how-to-enable","tag-ssh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Enable SSH on AlmaLinux 10 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to enable SSH on AlmaLinux 10 using our latest guide, or ask our expert Linux system admins to configure it for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable SSH on AlmaLinux 10 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to enable SSH on AlmaLinux 10 using our latest guide, or ask our expert Linux system admins to configure it for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Enable SSH on AlmaLinux 10\",\"datePublished\":\"2025-08-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\"},\"wordCount\":665,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp\",\"keywords\":[\"almalinux 10\",\"how to enable\",\"ssh\"],\"articleSection\":[\"AlmaLinux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\",\"name\":\"How to Enable SSH on AlmaLinux 10 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp\",\"datePublished\":\"2025-08-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to enable SSH on AlmaLinux 10 using our latest guide, or ask our expert Linux system admins to configure it for you.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Enable SSH on AlmaLinux 10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable SSH on AlmaLinux 10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Enable SSH on AlmaLinux 10 | LinuxHostSupport","description":"Learn how to enable SSH on AlmaLinux 10 using our latest guide, or ask our expert Linux system admins to configure it for you.","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:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable SSH on AlmaLinux 10 | LinuxHostSupport","og_description":"Learn how to enable SSH on AlmaLinux 10 using our latest guide, or ask our expert Linux system admins to configure it for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-08-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Enable SSH on AlmaLinux 10","datePublished":"2025-08-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/"},"wordCount":665,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp","keywords":["almalinux 10","how to enable","ssh"],"articleSection":["AlmaLinux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","name":"How to Enable SSH on AlmaLinux 10 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp","datePublished":"2025-08-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to enable SSH on AlmaLinux 10 using our latest guide, or ask our expert Linux system admins to configure it for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/08\/how-to-enable-ssh-on-almalimux-10.webp","width":742,"height":410,"caption":"How to Enable SSH on AlmaLinux 10"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable SSH on AlmaLinux 10"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2371","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2371"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2371\/revisions"}],"predecessor-version":[{"id":2376,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2371\/revisions\/2376"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2377"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2371"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2371"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2371"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}