{"id":14819,"date":"2025-05-02T18:43:26","date_gmt":"2025-05-02T13:13:26","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14819"},"modified":"2025-05-02T18:43:28","modified_gmt":"2025-05-02T13:13:28","slug":"how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/","title":{"rendered":"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu"},"content":{"rendered":"\n<p>PostgreSQL is a powerful, open-source object-relational database system known for its reliability, robustness, and performance. Whether you&#8217;re working on a production-grade application or exploring data for a side project, PostgreSQL is an excellent choice. In this blog we will learn how to Install and Configure PostgreSQL with pgAdmin 4 on <a href=\"https:\/\/ubuntu.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Ubuntu<\/mark><\/a><\/p>\n\n\n\n<p>To make database management easier, pgAdmin 4 provides a user-friendly web interface that allows you to interact with your PostgreSQL databases visually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-update-system-packages\"><strong>Update System Packages<\/strong><\/h2>\n\n\n\n<p>Before we begin, it&#8217;s essential to update the package list and upgrade all existing packages. This ensures that you&#8217;re using the latest versions and reduces the risk of compatibility issues.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-install-postgresql\"><strong>Install PostgreSQL<\/strong><\/h2>\n\n\n\n<p>Next, install PostgreSQL along with postgresql-contrib, which provides additional utilities and extensions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install postgresql postgresql-contrib -y<\/code><\/pre>\n\n\n\n<p>After installation, PostgreSQL starts automatically and runs as a service. You can verify that it&#8217;s installed correctly by checking its version:<\/p>\n\n\n\n<p>psql &#8211;version<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-start-and-enable-the-postgresql-service\"><strong>Start and Enable the PostgreSQL Service<\/strong><\/h3>\n\n\n\n<p>To ensure PostgreSQL starts on boot and is currently running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start postgresql\nsudo systemctl enable postgresql<\/code><\/pre>\n\n\n\n<p>To check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status postgresql<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-switch-to-the-default-postgresql-user\"><strong>Switch to the Default PostgreSQL User<\/strong><\/h3>\n\n\n\n<p>PostgreSQL creates a system user called postgres. You must switch to this user to perform administrative tasks like creating roles and databases:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -i -u postgres<\/code><\/pre>\n\n\n\n<p>Now you\u2019re operating under the PostgreSQL user context.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-access-the-postgresql-shell\"><strong>Access the PostgreSQL Shell<\/strong><\/h3>\n\n\n\n<p>To enter the interactive PostgreSQL shell (psql), run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>psql<\/code><\/pre>\n\n\n\n<p>Here, you can execute SQL queries and administrative commands.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-a-new-user-and-database\"><strong>Create a New User and Database<\/strong><\/h3>\n\n\n\n<p>We\u2019ll now create a new <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-primary-color\">PostgreSQL<\/mark> role (user) and a database, then assign appropriate privileges.<\/p>\n\n\n\n<p>In the psql shell, run:<\/p>\n\n\n\n<p>&#8212; Create a new user with a secure password<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE ROLE pguser WITH SUPERUSER CREATEDB CREATEROLE LOGIN ENCRYPTED PASSWORD 'password';<\/code><\/pre>\n\n\n\n<p>&#8212; Check that the user was created<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\\du<\/code><\/pre>\n\n\n\n<p>&#8212; Create a new database<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE pgdb;<\/code><\/pre>\n\n\n\n<p>&#8212; Grant all privileges on the database to the new user<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>GRANT ALL PRIVILEGES ON DATABASE pgdb TO pguser;<\/code><\/pre>\n\n\n\n<p>Replace pguser and pgdb with your preferred username and database name.<\/p>\n\n\n\n<p>Replace &#8216;password&#8217; with a strong password of your choice.<\/p>\n\n\n\n<p>Once done, exit the PostgreSQL shell:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\\q<\/code><\/pre>\n\n\n\n<p>And switch back to your regular system user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>exit<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-install-pgadmin-4-web-interface\"><strong>Install pgAdmin 4 (Web Interface)<\/strong><\/h4>\n\n\n\n<p>pgAdmin is a powerful, browser-based PostgreSQL database management tool. Let\u2019s install it step-by-step.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-install-required-tools\"><strong>Install Required Tools<\/strong><\/h4>\n\n\n\n<p>You\u2019ll need curl to download external resources:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt install curl -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-add-pgadmin-s-gpg-key\"><strong>Add pgAdmin&#8217;s GPG Key<\/strong><\/h4>\n\n\n\n<p>Import the repository key to verify package authenticity:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -fsS https:\/\/www.pgadmin.org\/static\/packages_pgadmin_org.pub | sudo gpg --dearmor -o \/usr\/share\/keyrings\/packages-pgadmin-org.gpg<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-add-the-pgadmin-repository\"><strong>Add the pgAdmin Repository<\/strong><\/h4>\n\n\n\n<p>Add pgAdmin\u2019s official APT repository to your sources list:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sh -c 'echo \"deb &#91;signed-by=\/usr\/share\/keyrings\/packages-pgadmin-org.gpg] https:\/\/ftp.postgresql.org\/pub\/pgadmin\/pgadmin4\/apt\/$(lsb_release -cs) pgadmin4 main\" > \/etc\/apt\/sources.list.d\/pgadmin4.list &amp;&amp; apt update'<\/code><\/pre>\n\n\n\n<p>This command:<\/p>\n\n\n\n<p>Adds the official pgAdmin APT source<\/p>\n\n\n\n<p>Refreshes the package list<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-install-pgadmin-4\"><strong>Install pgAdmin 4<\/strong><\/h4>\n\n\n\n<p>Finally, install pgAdmin 4 using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install pgadmin4 -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-configure-pgadmin-4-web-mode\"><strong>Configure pgAdmin 4 Web Mode<\/strong><\/h4>\n\n\n\n<p>After installation, configure pgAdmin to run in web mode. This will prompt you to create an admin login for the web UI:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/usr\/pgadmin4\/bin\/setup-web.sh<\/code><\/pre>\n\n\n\n<p>During this process, you\u2019ll be asked:<\/p>\n\n\n\n<p>To enter an email address \u2014 this will be your login<\/p>\n\n\n\n<p>To choose a password \u2014 make it strong and secure<\/p>\n\n\n\n<p>Once configured, the pgAdmin web server will start.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-access-pgadmin-in-your-web-browser\"><strong>Access pgAdmin in Your Web Browser<\/strong><\/h3>\n\n\n\n<p>You can now access pgAdmin via your browser using your server\u2019s IP address:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:\/\/&lt;your-server-ip>\/pgadmin4<\/code><\/pre>\n\n\n\n<p>You\u2019ll be greeted with a login screen. Use the credentials you provided during the web setup (email and password).<\/p>\n\n\n\n<p>After logging in, you can:<\/p>\n\n\n\n<p>Add a new server<\/p>\n\n\n\n<p>Connect using your pguser and pgdb<\/p>\n\n\n\n<p>Run SQL queries, manage tables, users, and backups \u2014 all through the graphical interface!<\/p>\n\n\n\n<p>Setting up PostgreSQL with pgAdmin 4 on Ubuntu gives you a powerful and user-friendly environment for managing databases. With PostgreSQL as your robust backend and pgAdmin 4 providing a graphical interface, you&#8217;re now ready to Install and Configure PostgreSQL with pgAdmin 4 and build, manage, and scale your applications with ease.<\/p>\n\n\n\n<p>If you encounter any issues or need expert assistance while you Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu, our team is here to help. We offer reliable <a href=\"https:\/\/www.skynats.com\/server-management\/\">server management services<\/a> to ensure your database setup is secure, optimized, and scalable.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PostgreSQL is a powerful, open-source object-relational database system known for its reliability, robustness, and performance. Whether you&#8217;re working on a production-grade application or exploring data for a side project, PostgreSQL is an excellent choice. In this blog we will learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu To make database management [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1013,1014,315,236],"class_list":["post-14819","post","type-post","status-publish","format-standard","hentry","category-blog","tag-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu","tag-pgadmin-4","tag-postgresql","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu<\/title>\n<meta name=\"description\" content=\"Learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu. Follow our guide &amp; get expert help to set up your server today!\" \/>\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.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu. Follow our guide &amp; get expert help to set up your server today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-02T13:13:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-02T13:13:28+00:00\" \/>\n<meta name=\"author\" content=\"Sajna VM\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sajna VM\" \/>\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.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/\"},\"author\":{\"name\":\"Sajna VM\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\"},\"headline\":\"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu\",\"datePublished\":\"2025-05-02T13:13:26+00:00\",\"dateModified\":\"2025-05-02T13:13:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/\"},\"wordCount\":621,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu\",\"pgAdmin 4\",\"postgresql\",\"Ubuntu\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/\",\"name\":\"Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-05-02T13:13:26+00:00\",\"dateModified\":\"2025-05-02T13:13:28+00:00\",\"description\":\"Learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu. Follow our guide & get expert help to set up your server today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\",\"name\":\"Sajna VM\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"caption\":\"Sajna VM\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu","description":"Learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu. Follow our guide & get expert help to set up your server today!","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.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu","og_description":"Learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu. Follow our guide & get expert help to set up your server today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-05-02T13:13:26+00:00","article_modified_time":"2025-05-02T13:13:28+00:00","author":"Sajna VM","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sajna VM","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/"},"author":{"name":"Sajna VM","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be"},"headline":"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu","datePublished":"2025-05-02T13:13:26+00:00","dateModified":"2025-05-02T13:13:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/"},"wordCount":621,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu","pgAdmin 4","postgresql","Ubuntu"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/","name":"Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-05-02T13:13:26+00:00","dateModified":"2025-05-02T13:13:28+00:00","description":"Learn how to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu. Follow our guide & get expert help to set up your server today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-postgresql-with-pgadmin-4-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install and Configure PostgreSQL with pgAdmin 4 on Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be","name":"Sajna VM","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","caption":"Sajna VM"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14819","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14819"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14819\/revisions"}],"predecessor-version":[{"id":14820,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14819\/revisions\/14820"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14819"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}