{"id":4941,"date":"2023-05-04T15:41:32","date_gmt":"2023-05-04T15:41:32","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=4941"},"modified":"2023-05-04T15:43:05","modified_gmt":"2023-05-04T15:43:05","slug":"how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/","title":{"rendered":"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04"},"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\/05\/pgadmin_ubuntu_en.jpg\" alt=\"Installing PgAdmin4 on Ubuntu\" class=\"wp-image-4990\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>PgAdmin4 is an open-source administration and management tool for PostgreSQL, and it can be installed on Ubuntu in just a few easy steps. In this article, we will provide you with a step-by-step guide on how to install PgAdmin4 on Ubuntu.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Update your Ubuntu system<\/h2>\n\n\n\n<p>Before you begin installing PgAdmin4, it is recommended to update your Ubuntu system to ensure that you have the latest security patches and bug fixes.<\/p>\n\n\n\n<p>To update your Ubuntu system, open a terminal and enter the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo apt update &amp;&amp; sudo apt upgrade -y<\/span><\/code><\/pre>\n\n\n\n<p>This will update your system and install any available upgrades.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install PostgreSQL<\/h2>\n\n\n\n<p>PgAdmin4 is a management tool for PostgreSQL, so you need to have PostgreSQL installed on your system. To install PostgreSQL, enter the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo apt install postgresql postgresql-contrib -y<\/span><\/code><\/pre>\n\n\n\n<p>This command will install the PostgreSQL server and some additional utilities that you may find useful.<\/p>\n\n\n\n<p>For a detailed tutorial, visit our guide on How to <a href=\"https:\/\/www.webhi.com\/how-to\/install-postgresql-in-ubuntu-18-04-20-4-22-04\/\">Install PostgreSQL in Ubuntu 18.04\/ 20.4\/ 22.04.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Install PgAdmin4<\/h2>\n\n\n\n<p>To install PgAdmin4, you need to add the repository for the latest version of PgAdmin4 to your system. To do this, enter the following commands in your terminal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo curl https:\/\/www.pgadmin.org\/static\/packages_pgadmin_org.pub | sudo apt-key add<\/span><\/code><\/pre>\n\n\n\n<p>This command adds the public key for the PgAdmin4 repository to your system.<\/p>\n\n\n\n<p>Next, add the repository to your system&#8217;s sources.list file by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">echo \"deb https:\/\/ftp.postgresql.org\/pub\/pgadmin\/pgadmin4\/apt\/$(lsb_release -cs) pgadmin4 main\" | sudo tee \/etc\/apt\/sources.list.d\/pgadmin4.list<\/span><\/code><\/pre>\n\n\n\n<p>This command adds the repository for the latest version of PgAdmin4 to your system&#8217;s sources.list file.<\/p>\n\n\n\n<p>Now update your system&#8217;s package list:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo apt update<\/span><\/code><\/pre>\n\n\n\n<p>And finally, install PgAdmin4 by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install pgadmin4<\/code><\/pre>\n\n\n\n<p>This command installs PgAdmin4 and all its dependencies.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Access PgAdmin4<\/h2>\n\n\n\n<p>After installation, you can access PgAdmin4 by opening your web browser and entering the following URL:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">http:\/\/localhost\/pgadmin4<\/pre>\n\n\n\n<p>This will open the PgAdmin4 login page. Enter your login credentials (default username is &#8220;<a href=\"mailto:pgadmin4@pgadmin.org\">pgadmin4@pgadmin.org<\/a>&#8221; and default password is &#8220;admin&#8221;) and click the &#8220;Sign in&#8221; button to access the PgAdmin4 web interface.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Configure PgAdmin4<\/h2>\n\n\n\n<p>Once you have logged in to PgAdmin4, you may want to configure it to suit your needs. You can do this by clicking on the &#8220;File&#8221; menu and selecting &#8220;Preferences&#8221;.<\/p>\n\n\n\n<p>Here you can configure various settings such as the default server group, the default language, and the default font size. You can also configure advanced settings such as SSL certificates, email notifications, and backup options.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Create a Server<\/h2>\n\n\n\n<p>To start managing your PostgreSQL databases using PgAdmin4, you need to create a server. To do this, click on the &#8220;Servers&#8221; menu and select &#8220;Create Server&#8221;.<\/p>\n\n\n\n<p>In the &#8220;Create &#8211; Server&#8221; dialog box, enter the following details:<\/p>\n\n\n\n<ul>\n<li>Name: A name for the server<\/li>\n\n\n\n<li>Host: The IP address or hostname of the server where PostgreSQL is installed<\/li>\n\n\n\n<li>Port: The port number on which PostgreSQL is listening (default is 5432)<\/li>\n\n\n\n<li>Maintenance database: The name of the database that you want to use for administration tasks<\/li>\n\n\n\n<li>Username: The username that you want to use to connect to the server<\/li>\n\n\n\n<li>Password: The password for the username<\/li>\n<\/ul>\n\n\n\n<p>Click the &#8220;Save&#8221; button to save the server details. You can now connect<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In conclusion, installing PostgreSQL on an Ubuntu operating system is a relatively straightforward process that can be accomplished through a few simple steps. By following the instructions outlined in this article, users will be able to easily set up and begin using PostgreSQL to manage their databases. Whether you are new to database management or a seasoned pro, PostgreSQL offers a powerful and flexible solution that makes it easy to create and maintain complex data structures. So if you need a reliable and robust tool for managing your information, look no further than PostgreSQL.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PgAdmin4 is an open-source administration and management tool for PostgreSQL, and it can be installed on Ubuntu in just a few easy steps. In this article, we will provide you with a step-by-step guide on how to install PgAdmin4 on Ubuntu. Step 1: Update your Ubuntu system Before you begin installing PgAdmin4, it is recommended ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\" 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":[57,69],"tags":[],"yoast_head":"\n<title>How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04 - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to install PgAdmin4 for PostgreSQL on your Ubuntu system with this step-by-step guide, including instructions for Ubuntu 18.04, 20.4, and 22.04.\" \/>\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\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04 - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to install PgAdmin4 for PostgreSQL on your Ubuntu system with this step-by-step guide, including instructions for Ubuntu 18.04, 20.4, and 22.04.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\" \/>\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-05-04T15:41:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-04T15:43:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_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=\"3 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\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04\",\"datePublished\":\"2023-05-04T15:41:32+00:00\",\"dateModified\":\"2023-05-04T15:43:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\"},\"wordCount\":590,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Databases\",\"Linux system administration\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\",\"name\":\"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04 - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-05-04T15:41:32+00:00\",\"dateModified\":\"2023-05-04T15:43:05+00:00\",\"description\":\"Learn how to install PgAdmin4 for PostgreSQL on your Ubuntu system with this step-by-step guide, including instructions for Ubuntu 18.04, 20.4, and 22.04.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04\"}]},{\"@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=1782424353\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04 - WebHi Tutorials &amp; Documentations","description":"Learn how to install PgAdmin4 for PostgreSQL on your Ubuntu system with this step-by-step guide, including instructions for Ubuntu 18.04, 20.4, and 22.04.","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\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04 - WebHi Tutorials &amp; Documentations","og_description":"Learn how to install PgAdmin4 for PostgreSQL on your Ubuntu system with this step-by-step guide, including instructions for Ubuntu 18.04, 20.4, and 22.04.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-05-04T15:41:32+00:00","article_modified_time":"2023-05-04T15:43:05+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/pgadmin_ubuntu_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04","datePublished":"2023-05-04T15:41:32+00:00","dateModified":"2023-05-04T15:43:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/"},"wordCount":590,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Databases","Linux system administration"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/","name":"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04 - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-05-04T15:41:32+00:00","dateModified":"2023-05-04T15:43:05+00:00","description":"Learn how to install PgAdmin4 for PostgreSQL on your Ubuntu system with this step-by-step guide, including instructions for Ubuntu 18.04, 20.4, and 22.04.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-pgadmin4-on-ubuntu-18-04-20-04-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to Install PgAdmin4 on Ubuntu 18.04 \/ 20.04 \/ 22.04"}]},{"@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=1782424353","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353","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\/4941"}],"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=4941"}],"version-history":[{"count":19,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/4941\/revisions"}],"predecessor-version":[{"id":5006,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/4941\/revisions\/5006"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=4941"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=4941"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=4941"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}