{"id":2454,"date":"2025-10-15T12:30:00","date_gmt":"2025-10-15T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=2454"},"modified":"2025-09-03T07:53:11","modified_gmt":"2025-09-03T12:53:11","slug":"how-to-enable-ssh-on-almalinux-10","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","title":{"rendered":"How to enable SSH on AlmaLinux 10"},"content":{"rendered":"\n<p>Secure Shell (SSH) is the most common and secure way to remotely access a Linux server. By learning how to enable SSH on AlmaLinux 10, you can manage your server from anywhere in the world using encrypted communication.<\/p>\n\n\n\n<p>In this tutorial, we will walk you through how to enable, start and secure SSH on AlmaLinux 10 server.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before we begin, make sure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AlmaLinux 10 <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">VPS hosting<\/a><\/li>\n\n\n\n<li>Root access or a user with sudo privileges<\/li>\n\n\n\n<li>Basic familiarity with the terminal<\/li>\n<\/ul>\n\n\n\n<p>You can check if the <strong>openssh-server<\/strong> package is installed with the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># rpm -q openssh-server\nopenssh-server-9.9p1-7.el10_0.x86_64<\/code><\/pre>\n\n\n\n<p>The OpenSSH server package is already installed by default in the AlmaLinux 10 and you should receive a similar output.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Enable and Start the SSH Service<\/h2>\n\n\n\n<p>Once installed, enable and start the SSH service so it runs automatically after each reboot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl enable sshd\n# systemctl start sshd<\/code><\/pre>\n\n\n\n<p>Check its status to make sure it\u2019s running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl status sshd<\/code><\/pre>\n\n\n\n<p>You should see <strong>active (running)<\/strong> in green.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step. 3 Allow SSH through the Firewall<\/h2>\n\n\n\n<p>If you have firewalls installed such as CSF (ConfigServer Firewall), firewalld or UFW (Uncomplicated Firewall) you may need to allow the SSH port in the firewall so you can connect to your server via SSH.<\/p>\n\n\n\n<p>For firewalld you can use the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo firewall-cmd --permanent --zone=public --add-service=ssh\nsudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n<p>You can confirm it&#8217;s open with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo firewall-cmd --list-all<\/code><\/pre>\n\n\n\n<p><br>For the CSF firewall you will need to add the port if it\u2019s not already added in the file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/csf\/csf.conf<\/code><\/pre>\n\n\n\n<p>Check the TCP_IN and TCP_OUT lines and make sure the SSH port is added and save the file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>TCP_IN = \"20,21,22,25,53,80,110,143,443,465,587,993,995\"\n TCP_OUT = \"20,21,22,25,53,80,110,443,587\"<\/code><\/pre>\n\n\n\n<p>Then go ahead and restart the firewall with<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># csf -r<\/code><\/pre>\n\n\n\n<p>For the UFW firewall you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># ufw allow ssh<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Configure SSH Settings<\/h2>\n\n\n\n<p>To improve security or modify the SSH service according to your needs you can edit the following file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># nano \/etc\/ssh\/sshd_config<\/code><\/pre>\n\n\n\n<p>You can change the default 22 port to port 3222 for example and disable root login by modifying the following lines in the file<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Port 3222\nPermitRootLogin no<\/code><\/pre>\n\n\n\n<p>After making the changes, go ahead and restart the SSH service so the changes can take effect<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl restart sshd<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Using SSH to connect to your server<\/h2>\n\n\n\n<p>To test if you have configured the SSH server properly you can now try to connect from a remote computer using the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># ssh username@server-ip<\/code><\/pre>\n\n\n\n<p>If you already changed the Port number you can use the -p flag and use the port number you have previously configured<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># ssh username@server-ip -p 3222<\/code><\/pre>\n\n\n\n<p>If for some reason, you are unable to connect you can use the -v (verbose) flag or -vvv for more detailed log.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># ssh -vvv username@server-ip -p 3222<\/code><\/pre>\n\n\n\n<p>Then you check the output for more information and once again check the firewall rules which may usually block the SSH connections if you forgot to configure them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. SFTP using SSH over FTP<\/h2>\n\n\n\n<p>You can also use the SSH protocol to connect for FTP file transfer. If you are using FTP client such as Filezilla you can configure SFTP by using the following settings:<\/p>\n\n\n\n<p><strong>Protocol: <\/strong>SFTP \u2013 SSH File Transfer Protocol<\/p>\n\n\n\n<p><strong>Host: <\/strong>Server IP address<\/p>\n\n\n\n<p><strong>Port: <\/strong>22 ( or SSH port you configured)<\/p>\n\n\n\n<p><strong>User:<\/strong> someuser<\/p>\n\n\n\n<p><strong>Password:<\/strong> password-of-someuser<\/p>\n\n\n\n<p>And you are connected, you can now upload\/download files via SFTP.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this tutorial we showed you how you can check if OpenSSH server is installed and running. You also learned how to allow access for SSH connections and how you can use ssh -v (or -vvv) to <strong>debug SSH &#8220;Connection refused&#8221; errors<\/strong>.<\/p>\n\n\n\n<p>If the service isn\u2019t running or listening, start it. If the firewall is blocking it, open the port. And if you changed the default port, make sure the firewall settings match.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Secure Shell (SSH) is the most common and secure way to remotely access a Linux server. By learning how to enable SSH on AlmaLinux 10, you can manage your server from anywhere in the world using encrypted communication. In this tutorial, we will walk you through how to enable, start and secure SSH on AlmaLinux &#8230; <a title=\"How to enable SSH on AlmaLinux 10\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\" aria-label=\"More on How to enable SSH on AlmaLinux 10\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":2463,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[352],"tags":[351,362,118,225,121],"class_list":["post-2454","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-almalinux","tag-almalinux-10","tag-enable-ssh","tag-how-to","tag-security","tag-ssh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to enable SSH on AlmaLinux 10 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Learn how to enable SSH on AlmaLinux 10 using our latest easy-to-follow step-by-step guide and improve your website security.\" \/>\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-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 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to enable SSH on AlmaLinux 10 using our latest easy-to-follow step-by-step guide and improve your website security.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/\" \/>\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=\"2025-10-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-almalinux-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=\"@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-ssh-on-almalinux-10\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to enable SSH on AlmaLinux 10\",\"datePublished\":\"2025-10-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/\"},\"wordCount\":576,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-almalinux-10.webp\",\"keywords\":[\"almalinux 10\",\"enable ssh\",\"how to\",\"security\",\"ssh\"],\"articleSection\":[\"AlmaLinux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/\",\"name\":\"How to enable SSH on AlmaLinux 10 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-almalinux-10.webp\",\"datePublished\":\"2025-10-15T17:30:00+00:00\",\"description\":\"Learn how to enable SSH on AlmaLinux 10 using our latest easy-to-follow step-by-step guide and improve your website security.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-almalinux-10.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-almalinux-10.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Enable SSH on AlmaLinux 10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-enable-ssh-on-almalinux-10\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to enable SSH on AlmaLinux 10\"}]},{\"@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 SSH on AlmaLinux 10 | LinuxCloudVPS Blog","description":"Learn how to enable SSH on AlmaLinux 10 using our latest easy-to-follow step-by-step guide and improve your website security.","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-ssh-on-almalinux-10\/","og_locale":"en_US","og_type":"article","og_title":"How to enable SSH on AlmaLinux 10 | LinuxCloudVPS Blog","og_description":"Learn how to enable SSH on AlmaLinux 10 using our latest easy-to-follow step-by-step guide and improve your website security.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2025-10-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-almalinux-10.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-ssh-on-almalinux-10\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to enable SSH on AlmaLinux 10","datePublished":"2025-10-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/"},"wordCount":576,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-almalinux-10.webp","keywords":["almalinux 10","enable ssh","how to","security","ssh"],"articleSection":["AlmaLinux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/","name":"How to enable SSH on AlmaLinux 10 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-almalinux-10.webp","datePublished":"2025-10-15T17:30:00+00:00","description":"Learn how to enable SSH on AlmaLinux 10 using our latest easy-to-follow step-by-step guide and improve your website security.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-almalinux-10.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-almalinux-10.webp","width":742,"height":410,"caption":"How to Enable SSH on AlmaLinux 10"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-enable-ssh-on-almalinux-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to enable SSH on AlmaLinux 10"}]},{"@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\/2454","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=2454"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2454\/revisions"}],"predecessor-version":[{"id":2459,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/2454\/revisions\/2459"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/2463"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=2454"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=2454"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=2454"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}