{"id":5867,"date":"2023-06-26T16:58:41","date_gmt":"2023-06-26T16:58:41","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=5867"},"modified":"2023-06-26T16:58:42","modified_gmt":"2023-06-26T16:58:42","slug":"guide-to-editing-the-sudoers-file","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/","title":{"rendered":"A comprehensive Guide to Edit the Sudoers file"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en.jpg\" alt=\"Guide to Editing the Sudoers File\" class=\"wp-image-5890\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"introduction\">Introduction<\/h2>\n\n\n\n<p>The <strong>sudoers file<\/strong> is a crucial configuration file in Unix-like operating systems that controls access to root or superuser privileges. Understanding how to edit this file is essential for system administrators and power users. In this article, we will delve into the process of editing the sudoers file step by step, covering topics such as obtaining root privileges, modifying the sudoers file, granting sudo privileges to users, setting up custom rules, and additional miscellaneous information.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"section-1-acquiring-root-privileges\">Section 1: Acquiring Root Privileges<\/h2>\n\n\n\n<p>To make changes to the sudoers file, it is necessary to have root access. This section will explain different methods to obtain root privileges, including:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"11-using-the-su-command\">1.1. Using the&nbsp;<code>su<\/code>&nbsp;Command<\/h3>\n\n\n\n<p>The&nbsp;<code>su<\/code>&nbsp;command allows users to switch to the root user account. We will explore the syntax and usage of the&nbsp;<code>su<\/code>&nbsp;command to gain elevated privileges.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ su -\nPassword: [Enter root password]<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"12-utilizing-the-sudo-command\">1.2. Utilizing the&nbsp;<code>sudo<\/code>&nbsp;Command<\/h3>\n\n\n\n<p>The&nbsp;<code>sudo<\/code>&nbsp;command enables authorized users to execute commands with root privileges. We will discuss how to use&nbsp;<code>sudo<\/code>&nbsp;effectively to edit the sudoers file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo su -\n[sudo] password for [username]: [Enter user password]<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"section-2-modifying-the-sudoers-file\">Section 2: Modifying the Sudoers File<\/h2>\n\n\n\n<p>The sudoers file is typically located at\u00a0<code><strong>\/etc\/sudoers<\/strong><\/code>\u00a0and can be edited using various text editors. This section will guide you through the process of modifying the sudoers file, covering the following aspects:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"21-choosing-a-text-editor\">2.1. Choosing a Text Editor<\/h3>\n\n\n\n<p>We will explore different text editors available on Unix-like systems and their suitability for editing the sudoers file. Common options include vi, nano, and emacs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"22-opening-the-sudoers-file\">2.2. Opening the Sudoers File<\/h3>\n\n\n\n<p>Learn how to locate and open the sudoers file using the chosen text editor. We will provide the necessary commands and precautions to take while editing the file.<\/p>\n\n\n\n<p>Using vi:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo vi \/etc\/sudoers<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"23-understanding-sudoers-file-syntax\">2.3. Understanding Sudoers File Syntax<\/h3>\n\n\n\n<p>The sudoers file has its specific syntax and rules that must be followed. We will explain the structure of the file and highlight important syntax elements, such as user specifications, aliases, and command rules.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"24-making-modifications\">2.4. Making Modifications<\/h3>\n\n\n\n<p>Discover how to add, remove, or modify entries in the sudoers file to customize the access privileges. We will cover common modifications, including granting sudo access to specific users or user groups.<\/p>\n\n\n\n<p>Example: Granting a user sudo privileges:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">username ALL=(ALL) ALL<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"section-3-granting-sudo-privileges-to-users\">Section 3: Granting Sudo Privileges to Users<\/h2>\n\n\n\n<p>One of the primary purposes of editing the sudoers file is to assign sudo privileges to specific users. This section will outline the steps involved in granting sudo access, including:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"31-adding-users-to-the-sudo-group\">3.1. Adding Users to the Sudo Group<\/h3>\n\n\n\n<p>Learn how to add users to the sudo group, which grants them default sudo privileges. We will provide the necessary commands to manage user membership in the sudo group.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo usermod -aG sudo username<\/code><\/pre>\n\n\n\n<p>On CentOS, this is usually the&nbsp;<code>wheel<\/code>&nbsp;group instead of the&nbsp;<code>sudo<\/code>&nbsp;group:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo usermod -aG wheel username<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"32-creating-custom-user-specifications\">3.2. Creating Custom User Specifications<\/h3>\n\n\n\n<p>Explore how to create custom user specifications in the sudoers file, allowing granular control over each user&#8217;s privileges. We will demonstrate examples of specifying user privileges based on commands, hosts, or other criteria.<\/p>\n\n\n\n<p>Example: Granting a user permission to run specific commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">username ALL=(ALL) \/path\/to\/command<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"section-4-setting-up-custom-rules\">Section 4: Setting Up Custom Rules<\/h2>\n\n\n\n<p>The sudoers file allows the configuration of custom rules to define specific privileges<\/p>\n\n\n\n<p>and restrictions. This section will guide you through the process of setting up custom rules, including:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"41-defining-command-aliases\">4.1. Defining Command Aliases<\/h3>\n\n\n\n<p>Learn how to define command aliases to simplify the sudoers file and make it more manageable. We will provide examples of creating and utilizing command aliases effectively.<\/p>\n\n\n\n<p>Example: Defining a command alias:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">Cmnd_Alias CMDALIAS = \/path\/to\/command1, \/path\/to\/command2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"42-implementing-host-and-user-group-restrictions\">4.2. Implementing Host and User Group Restrictions<\/h3>\n\n\n\n<p>Discover how to restrict sudo access based on host machines or user groups. We will explain the syntax and demonstrate how to set up these restrictions in the sudoers file.<\/p>\n\n\n\n<p>Example: Restricting sudo access to a specific host:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">%groupname hostname = (ALL) ALL<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"section-5-miscellaneous-information\">Section 5: Miscellaneous Information<\/h2>\n\n\n\n<p>This section will cover additional information and best practices related to editing the sudoers file, including:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"51-verifying-sudo-configuration\">5.1. Verifying Sudo Configuration<\/h3>\n\n\n\n<p>Learn how to verify the syntax and integrity of the sudoers file before saving changes. We will discuss tools such as&nbsp;<code>visudo<\/code>&nbsp;that can help prevent syntax errors.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo visudo -c<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"52-backup-and-recovery\">5.2. Backup and Recovery<\/h3>\n\n\n\n<p>Understand the importance of creating backups of the sudoers file and implementing recovery strategies in case of mistakes or system failures.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion:<\/h2>\n\n\n\n<p>Editing the sudoers file is a critical task for system administrators and advanced users. By following the steps outlined in this article, you will gain the necessary knowledge and confidence to modify the sudoers file effectively, grant sudo privileges to users, and set up custom rules tailored to your system&#8217;s requirements. Always exercise caution while editing system configuration files and ensure proper backup procedures to avoid any adverse effects.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction The sudoers file is a crucial configuration file in Unix-like operating systems that controls access to root or superuser privileges. Understanding how to edit this file is essential for system administrators and power users. In this article, we will delve into the process of editing the sudoers file step by step, covering topics such ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[69,3],"tags":[],"yoast_head":"\n<title>A comprehensive Guide to Edit the Sudoers file - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to edit the sudoers file and grant sudo privileges in this comprehensive guide. Follow step-by-step instructions to modify the sudoers file, add users to the sudo group, and set up custom rules.\" \/>\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.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A comprehensive Guide to Edit the Sudoers file - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to edit the sudoers file and grant sudo privileges in this comprehensive guide. Follow step-by-step instructions to modify the sudoers file, add users to the sudo group, and set up custom rules.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-26T16:58:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-26T16:58:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\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\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"A comprehensive Guide to Edit the Sudoers file\",\"datePublished\":\"2023-06-26T16:58:41+00:00\",\"dateModified\":\"2023-06-26T16:58:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\"},\"wordCount\":747,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\",\"name\":\"A comprehensive Guide to Edit the Sudoers file - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-06-26T16:58:41+00:00\",\"dateModified\":\"2023-06-26T16:58:42+00:00\",\"description\":\"Learn how to edit the sudoers file and grant sudo privileges in this comprehensive guide. Follow step-by-step instructions to modify the sudoers file, add users to the sudo group, and set up custom rules.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A comprehensive Guide to Edit the Sudoers file\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"A comprehensive Guide to Edit the Sudoers file - WebHi Tutorials &amp; Documentations","description":"Learn how to edit the sudoers file and grant sudo privileges in this comprehensive guide. Follow step-by-step instructions to modify the sudoers file, add users to the sudo group, and set up custom rules.","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.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/","og_locale":"en_US","og_type":"article","og_title":"A comprehensive Guide to Edit the Sudoers file - WebHi Tutorials &amp; Documentations","og_description":"Learn how to edit the sudoers file and grant sudo privileges in this comprehensive guide. Follow step-by-step instructions to modify the sudoers file, add users to the sudo group, and set up custom rules.","og_url":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-06-26T16:58:41+00:00","article_modified_time":"2023-06-26T16:58:42+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/sudoers_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"A comprehensive Guide to Edit the Sudoers file","datePublished":"2023-06-26T16:58:41+00:00","dateModified":"2023-06-26T16:58:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/"},"wordCount":747,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/","url":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/","name":"A comprehensive Guide to Edit the Sudoers file - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-06-26T16:58:41+00:00","dateModified":"2023-06-26T16:58:42+00:00","description":"Learn how to edit the sudoers file and grant sudo privileges in this comprehensive guide. Follow step-by-step instructions to modify the sudoers file, add users to the sudo group, and set up custom rules.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/guide-to-editing-the-sudoers-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"A comprehensive Guide to Edit the Sudoers file"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5867"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=5867"}],"version-history":[{"count":5,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5867\/revisions"}],"predecessor-version":[{"id":5917,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/5867\/revisions\/5917"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=5867"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=5867"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=5867"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}