{"id":63,"date":"2026-01-11T16:56:10","date_gmt":"2026-01-11T16:56:10","guid":{"rendered":"https:\/\/yearn.cloud\/?p=63"},"modified":"2026-01-11T16:56:12","modified_gmt":"2026-01-11T16:56:12","slug":"installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad","status":"publish","type":"post","link":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/","title":{"rendered":"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD"},"content":{"rendered":"\n<p>In today\u2019s enterprise environments, Active Directory (AD) has long been the backbone of identity management, authentication, and access control. Traditionally, Microsoft\u2019s implementation dominates the market, but open-source alternatives are gaining significant traction. Among these, <strong>Samba 4<\/strong> stands out as a robust, scalable, and flexible solution that can provide full Active Directory domain services on Linux systems. In this post, we\u2019ll walk through installing Samba 4 as an Active Directory Domain Controller (AD DC) on <strong>Red Hat Enterprise Linux 10<\/strong> (RHEL 10), and explore why many organizations are starting to prefer it over Microsoft\u2019s AD.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Why Choose Samba 4 Over Microsoft AD?<\/h2>\n\n\n\n<p>Before diving into installation, it\u2019s worth understanding why Samba 4 is often considered superior in certain contexts:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Cost Efficiency<\/strong><br>Microsoft AD licensing can be expensive, especially for enterprises scaling into hundreds or thousands of users. Samba 4 is open-source and free, eliminating licensing fees while offering almost identical AD functionality.<\/li>\n\n\n\n<li><strong>Cross-Platform Flexibility<\/strong><br>Samba runs natively on Linux, which allows organizations to integrate AD services without relying on Windows servers. This is particularly advantageous for organizations heavily invested in Linux infrastructure.<\/li>\n\n\n\n<li><strong>Simplified Management<\/strong><br>Samba 4 leverages standard Linux tools for monitoring, scripting, and automation. Tasks like backup, restore, and system integration are often simpler and more transparent compared to Windows AD.<\/li>\n\n\n\n<li><strong>Transparency and Customization<\/strong><br>Open-source code means you can inspect, modify, and optimize Samba to suit your environment. Microsoft AD, in contrast, is a closed ecosystem with limited flexibility.<\/li>\n\n\n\n<li><strong>Rapid Development and Community Support<\/strong><br>Samba has an active community and frequent updates, making it a cutting-edge alternative that quickly adapts to new authentication protocols and security standards.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites for Installing Samba 4 on RHEL 10<\/h2>\n\n\n\n<p>Before starting, ensure your system meets the following requirements:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>RHEL 10 server with root or sudo privileges<\/li>\n\n\n\n<li>Static IP address configured<\/li>\n\n\n\n<li>Properly configured hostname (FQDN recommended)<\/li>\n\n\n\n<li>Firewall configured to allow AD-related ports (TCP\/UDP 88, 135, 137\u2013139, 389, 445, 464, 636, 3268\u20133269)<\/li>\n<\/ul>\n\n\n\n<p>Additionally, update your system:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf update -y\nsudo dnf install -y vim wget curl\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Installing Samba 4<\/h2>\n\n\n\n<p>RHEL 10 ships with Samba in its repositories, but for Active Directory features, we need the full suite including the AD DC functionality:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install -y samba samba-common samba-client samba-dc\n<\/code><\/pre>\n\n\n\n<p>Confirm the installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>samba --version\n<\/code><\/pre>\n\n\n\n<p>You should see Samba 4.x displayed, confirming you have the AD-capable version installed.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Provisioning the Domain Controller<\/h2>\n\n\n\n<p>Now, we can provision Samba as an Active Directory Domain Controller. Replace <code>example.com<\/code> with your domain:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo samba-tool domain provision \\\n  --use-rfc2307 \\\n  --domain=EXAMPLE \\\n  --realm=EXAMPLE.COM \\\n  --adminpass='YourStrongPassword' \\\n  --server-role=dc\n<\/code><\/pre>\n\n\n\n<p><strong>What this does:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>--use-rfc2307<\/code> enables Unix attributes support<\/li>\n\n\n\n<li><code>--domain<\/code> sets the NetBIOS name<\/li>\n\n\n\n<li><code>--realm<\/code> sets the Kerberos realm<\/li>\n\n\n\n<li><code>--server-role=dc<\/code> ensures this instance is a Domain Controller<\/li>\n<\/ul>\n\n\n\n<p>After provisioning, Samba will create <code>\/etc\/samba\/smb.conf<\/code> with all necessary configurations.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Configuring Kerberos<\/h2>\n\n\n\n<p>Samba relies on Kerberos for authentication. Ensure your <code>\/etc\/krb5.conf<\/code> matches your AD domain:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;libdefaults]\n  default_realm = EXAMPLE.COM\n  dns_lookup_realm = false\n  dns_lookup_kdc = true\n<\/code><\/pre>\n\n\n\n<p>Test Kerberos authentication:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>kinit administrator\nklist\n<\/code><\/pre>\n\n\n\n<p>You should see a valid ticket if everything is correctly configured.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Starting Samba as a Service<\/h2>\n\n\n\n<p>Enable and start the Samba AD DC service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable samba\nsudo systemctl start samba\nsudo systemctl status samba\n<\/code><\/pre>\n\n\n\n<p>At this point, your RHEL 10 server is functioning as a fully operational Active Directory Domain Controller.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Integrating Clients<\/h2>\n\n\n\n<p>Samba 4 can seamlessly integrate both Windows and Linux clients. On a Windows machine, simply join the domain:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>System Properties<\/strong> \u2192 <strong>Computer Name<\/strong> \u2192 <strong>Change<\/strong><\/li>\n\n\n\n<li>Enter your Samba AD domain (<code>example.com<\/code>)<\/li>\n\n\n\n<li>Provide the <code>administrator<\/code> credentials set during provisioning<\/li>\n<\/ol>\n\n\n\n<p>Linux clients can use <code>realmd<\/code> or <code>sssd<\/code> to join the domain:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install -y realmd sssd\nsudo realm join example.com -U Administrator\n<\/code><\/pre>\n\n\n\n<p>Once joined, your clients can authenticate using AD accounts, access domain resources, and enjoy centralized identity management.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Managing Users and Groups<\/h2>\n\n\n\n<p>Samba 4 provides tools like <code>samba-tool<\/code> to manage users, groups, and policies. Examples:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Add a user\nsudo samba-tool user add john.doe P@ssw0rd\n\n# Create a group\nsudo samba-tool group add IT-Admins\n\n# Add user to group\nsudo samba-tool group addmembers IT-Admins john.doe\n<\/code><\/pre>\n\n\n\n<p>For administrators familiar with Windows AD, Samba offers nearly identical management workflows, including the ability to use RSAT tools from a Windows machine.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Why Samba 4 Is Often Better Than Microsoft AD<\/h2>\n\n\n\n<p>After seeing Samba 4 in action, the advantages become clear:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>No Vendor Lock-In:<\/strong> You\u2019re free to customize and migrate systems without being tied to Windows licensing.<\/li>\n\n\n\n<li><strong>Linux Ecosystem Integration:<\/strong> Automate AD tasks with scripts, Ansible, or Puppet.<\/li>\n\n\n\n<li><strong>Lower Cost of Ownership:<\/strong> Avoid Windows Server CALs and licensing fees.<\/li>\n\n\n\n<li><strong>Security Control:<\/strong> You can audit and tweak Samba\u2019s open-source code to meet strict security policies.<\/li>\n\n\n\n<li><strong>Scalability:<\/strong> Multiple Samba DCs can be deployed across regions without expensive hardware or software investments.<\/li>\n<\/ul>\n\n\n\n<p>In short, Samba 4 allows organizations to achieve all the benefits of Active Directory while leveraging Linux\u2019s flexibility, cost-effectiveness, and transparency.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Samba 4 on RHEL 10 provides a powerful, fully compatible Active Directory environment without the constraints and costs of Microsoft AD. By following the installation steps outlined above, enterprises can deploy a secure, scalable, and high-performing domain controller that integrates seamlessly with Windows and Linux clients alike.<\/p>\n\n\n\n<p>For organizations looking to reduce costs, gain control over their infrastructure, and embrace open-source solutions, <strong>Samba 4 is not just an alternative\u2014it\u2019s often the better choice.<\/strong><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In today\u2019s enterprise environments, Active Directory (AD) has long been the backbone of identity management, authentication, and access control. Traditionally, Microsoft\u2019s implementation dominates the market, but open-source alternatives are gaining significant traction. Among these, Samba 4 stands out as a robust, scalable, and flexible solution that can provide full Active Directory domain services on Linux [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-63","post","type-post","status-publish","format-standard","hentry","category-random"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD - Yearn Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD - Yearn Blog\" \/>\n<meta property=\"og:description\" content=\"In today\u2019s enterprise environments, Active Directory (AD) has long been the backbone of identity management, authentication, and access control. Traditionally, Microsoft\u2019s implementation dominates the market, but open-source alternatives are gaining significant traction. Among these, Samba 4 stands out as a robust, scalable, and flexible solution that can provide full Active Directory domain services on Linux [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\" \/>\n<meta property=\"og:site_name\" content=\"Yearn Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-11T16:56:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-11T16:56:12+00:00\" \/>\n<meta name=\"author\" content=\"The Yearn Himself\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"The Yearn Himself\" \/>\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:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\"},\"author\":{\"name\":\"The Yearn Himself\",\"@id\":\"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0\"},\"headline\":\"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD\",\"datePublished\":\"2026-01-11T16:56:10+00:00\",\"dateModified\":\"2026-01-11T16:56:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\"},\"wordCount\":756,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0\"},\"articleSection\":[\"Random Posts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\",\"url\":\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\",\"name\":\"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD - Yearn Blog\",\"isPartOf\":{\"@id\":\"https:\/\/yearn.cloud\/#website\"},\"datePublished\":\"2026-01-11T16:56:10+00:00\",\"dateModified\":\"2026-01-11T16:56:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/yearn.cloud\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yearn.cloud\/#website\",\"url\":\"https:\/\/yearn.cloud\/\",\"name\":\"Yearn Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yearn.cloud\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0\",\"name\":\"The Yearn Himself\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/yearn.cloud\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/yearn.cloud\/wp-content\/uploads\/2025\/12\/img_57159776.jpg\",\"contentUrl\":\"https:\/\/yearn.cloud\/wp-content\/uploads\/2025\/12\/img_57159776.jpg\",\"width\":993,\"height\":745,\"caption\":\"The Yearn Himself\"},\"logo\":{\"@id\":\"https:\/\/yearn.cloud\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/yearn.cloud\"],\"url\":\"https:\/\/yearn.cloud\/index.php\/author\/25524a\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD - Yearn Blog","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:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/","og_locale":"en_US","og_type":"article","og_title":"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD - Yearn Blog","og_description":"In today\u2019s enterprise environments, Active Directory (AD) has long been the backbone of identity management, authentication, and access control. Traditionally, Microsoft\u2019s implementation dominates the market, but open-source alternatives are gaining significant traction. Among these, Samba 4 stands out as a robust, scalable, and flexible solution that can provide full Active Directory domain services on Linux [&hellip;]","og_url":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/","og_site_name":"Yearn Blog","article_published_time":"2026-01-11T16:56:10+00:00","article_modified_time":"2026-01-11T16:56:12+00:00","author":"The Yearn Himself","twitter_card":"summary_large_image","twitter_misc":{"Written by":"The Yearn Himself","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#article","isPartOf":{"@id":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/"},"author":{"name":"The Yearn Himself","@id":"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0"},"headline":"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD","datePublished":"2026-01-11T16:56:10+00:00","dateModified":"2026-01-11T16:56:12+00:00","mainEntityOfPage":{"@id":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/"},"wordCount":756,"commentCount":0,"publisher":{"@id":"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0"},"articleSection":["Random Posts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/","url":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/","name":"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD - Yearn Blog","isPartOf":{"@id":"https:\/\/yearn.cloud\/#website"},"datePublished":"2026-01-11T16:56:10+00:00","dateModified":"2026-01-11T16:56:12+00:00","breadcrumb":{"@id":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/yearn.cloud\/index.php\/2026\/01\/11\/installing-and-using-samba-4-for-active-directory-on-rhel-10-a-superior-alternative-to-microsoft-ad\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/yearn.cloud\/"},{"@type":"ListItem","position":2,"name":"Installing and Using Samba 4 for Active Directory on RHEL 10: A Superior Alternative to Microsoft AD"}]},{"@type":"WebSite","@id":"https:\/\/yearn.cloud\/#website","url":"https:\/\/yearn.cloud\/","name":"Yearn Blog","description":"","publisher":{"@id":"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yearn.cloud\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/yearn.cloud\/#\/schema\/person\/1b88ce43ead1597c672dfa90e11627a0","name":"The Yearn Himself","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/yearn.cloud\/#\/schema\/person\/image\/","url":"https:\/\/yearn.cloud\/wp-content\/uploads\/2025\/12\/img_57159776.jpg","contentUrl":"https:\/\/yearn.cloud\/wp-content\/uploads\/2025\/12\/img_57159776.jpg","width":993,"height":745,"caption":"The Yearn Himself"},"logo":{"@id":"https:\/\/yearn.cloud\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/yearn.cloud"],"url":"https:\/\/yearn.cloud\/index.php\/author\/25524a\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/posts\/63","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/comments?post=63"}],"version-history":[{"count":1,"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/posts\/63\/revisions"}],"predecessor-version":[{"id":64,"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/posts\/63\/revisions\/64"}],"wp:attachment":[{"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/media?parent=63"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/categories?post=63"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yearn.cloud\/index.php\/wp-json\/wp\/v2\/tags?post=63"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}