{"id":13309,"date":"2023-10-02T12:25:07","date_gmt":"2023-10-02T16:25:07","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13309"},"modified":"2023-10-02T12:25:11","modified_gmt":"2023-10-02T16:25:11","slug":"how-to-install-postgresql-16-on-ubuntu-22-04","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/","title":{"rendered":"How to Install PostgreSQL 16 on Ubuntu 22.04"},"content":{"rendered":"\n

PostgreSQL is a powerful open-source relational database management system known for its robustness and flexibility. With each new release, PostgreSQL<\/a> continues to improve and offer new features. Ubuntu 22.04, the latest LTS (Long Term Support) release of Ubuntu, provides an excellent platform for running PostgreSQL 16. In this blog post, we will guide you through the steps to install PostgreSQL 16 on Ubuntu 22.04.<\/p>\n\n\n\n

Prerequisites<\/h2>\n\n\n\n

Before you start the installation process, make sure you have the following:<\/p>\n\n\n\n

    \n
  1. An Ubuntu<\/a> 22.04 server or virtual machine with sudo privileges.<\/li>\n\n\n\n
  2. A terminal or SSH access to your Ubuntu machine.<\/li>\n\n\n\n
  3. A basic understanding of working with the command line.<\/li>\n<\/ol>\n\n\n\n

    Now, let’s dive into the installation process!<\/p>\n\n\n\n

    Step 1: Update System Packages<\/h2>\n\n\n\n

    First, it’s essential to ensure that your system is up to date. Open a terminal and run the following command to update the package list and upgrade existing packages:<\/p>\n\n\n\n

    $ sudo apt update && sudo apt upgrade -y<\/code><\/pre>\n\n\n\n

    This command will fetch the latest package information and install any available updates.<\/p>\n\n\n\n

    Step 2: Add PostgreSQL APT Repository<\/h2>\n\n\n\n

    PostgreSQL provides an official APT repository for Ubuntu, which makes it easy to install the latest version. To add the PostgreSQL APT repository to your system, run the following commands:<\/p>\n\n\n\n

    $ sudo sh -c 'echo "deb http:\/\/apt.postgresql.org\/pub\/repos\/apt $(lsb_release -cs)-pgdg main" > \/etc\/apt\/sources.list.d\/pgdg.list'<\/code><\/pre>\n\n\n\n

    The above command adds the PostgreSQL APT repository to your system’s package sources.<\/p>\n\n\n\n

    Next, import the repository’s signing key using the following command:<\/p>\n\n\n\n

    $ wget --quiet -O - https:\/\/www.postgresql.org\/media\/keys\/ACCC4CF8.asc | sudo apt-key add -<\/code><\/pre>\n\n\n\n

    Step 3: Install PostgreSQL 16<\/h2>\n\n\n\n

    With the repository added and the key imported, it’s time to install PostgreSQL 16. Run the following command:<\/p>\n\n\n\n

    $ sudo apt update\n$ sudo apt install postgresql-16 postgresql-contrib-16<\/code><\/pre>\n\n\n\n

    The postgresql-contrib-16<\/code> package includes additional utilities and extensions for PostgreSQL.<\/p>\n\n\n\n

    Step 4: Start and Enable PostgreSQL<\/h2>\n\n\n\n

    After PostgreSQL 16 is installed, it is not automatically started. You need to enable and start the PostgreSQL service using the following commands:<\/p>\n\n\n\n

    $ sudo systemctl enable postgresql\n$ sudo systemctl start postgresql<\/code><\/pre>\n\n\n\n

    Step 5: Set a Password for the PostgreSQL User (Optional)<\/h2>\n\n\n\n

    By default, PostgreSQL creates a user named postgres<\/code> with administrative privileges. You should set a password for this user. To do this, switch to the postgres<\/code> user and access the PostgreSQL prompt:<\/p>\n\n\n\n

    $ sudo -i -u postgres\n$ psql<\/code><\/pre>\n\n\n\n

    Now, set a password for the postgres<\/code> user by running the following SQL command:<\/p>\n\n\n\n

    ALTER USER postgres PASSWORD 'your_password';<\/code><\/pre>\n\n\n\n

    Replace 'your_password'<\/code> with your desired password. After setting the password, exit the PostgreSQL prompt by typing \\q<\/code> and pressing Enter.<\/p>\n\n\n\n

    Step 6: Configure PostgreSQL for Remote Access (Optional)<\/h2>\n\n\n\n

    If you plan to access PostgreSQL from remote machines, you may need to modify the PostgreSQL configuration to allow remote connections. By default, PostgreSQL only allows connections from the localhost.<\/p>\n\n\n\n

    To enable remote access, open the PostgreSQL configuration file in a text editor:<\/p>\n\n\n\n

    $ sudo nano \/etc\/postgresql\/16\/main\/postgresql.conf<\/code><\/pre>\n\n\n\n

    Find the listen_addresses<\/code> line and change it to:<\/p>\n\n\n\n

    listen_addresses = '*'<\/code><\/pre>\n\n\n\n

    Save the file and exit the text editor.<\/p>\n\n\n\n

    Next, edit the pg_hba.conf<\/code> file:<\/p>\n\n\n\n

    $ sudo nano \/etc\/postgresql\/16\/main\/pg_hba.conf<\/code><\/pre>\n\n\n\n

    Add the following line at the end of the file to allow all IPv4 and IPv6 addresses to connect:<\/p>\n\n\n\n

    host    all             all             0.0.0.0\/0               md5\nhost    all             all             ::\/0                    md5\n<\/code><\/pre>\n\n\n\n

    Save the file and exit the text editor.<\/p>\n\n\n\n

    Finally, restart PostgreSQL to apply the changes:<\/p>\n\n\n\n

    $ sudo systemctl restart postgresql<\/code><\/pre>\n\n\n\n

    Conclusion<\/h2>\n\n\n\n

    Congratulations! You’ve successfully installed PostgreSQL 16 on your Ubuntu 22.04 machine. PostgreSQL is now up and running, ready for you to create databases, tables, and start building your applications with this powerful relational database management system. If you have any specific use cases or configurations in mind, don’t forget to explore the official PostgreSQL documentation<\/a> for further guidance. Enjoy using PostgreSQL on your Ubuntu 22.04 server!<\/p>\n","protected":false},"excerpt":{"rendered":"

    PostgreSQL is a powerful open-source relational database management system known for its robustness and flexibility. With each new release, PostgreSQL continues to improve and offer new features. Ubuntu 22.04, the…<\/p>\n","protected":false},"author":1,"featured_media":13317,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16],"tags":[180,354,424,433,449,955,531,544,591,598],"yoast_head":"\nHow to Install PostgreSQL 16 on Ubuntu 22.04<\/title>\n<meta name=\"description\" content=\"Here we show you how to properly configure and install PostgreSQL 16 open source database on Ubuntu 22.04 Linux systems\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-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 PostgreSQL 16 on Ubuntu 22.04\" \/>\n<meta property=\"og:description\" content=\"Here we show you how to properly configure and install PostgreSQL 16 open source database on Ubuntu 22.04 Linux systems\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-02T16:25:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-02T16:25:11+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install PostgreSQL 16 on Ubuntu 22.04\",\"datePublished\":\"2023-10-02T16:25:07+00:00\",\"dateModified\":\"2023-10-02T16:25:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/\"},\"wordCount\":517,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg\",\"keywords\":[\"Database\",\"Linux\",\"Open Source\",\"Optimization\",\"Performance\",\"PostgreSQL\",\"Server\",\"Software development\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/\",\"name\":\"How to Install PostgreSQL 16 on Ubuntu 22.04\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg\",\"datePublished\":\"2023-10-02T16:25:07+00:00\",\"dateModified\":\"2023-10-02T16:25:11+00:00\",\"description\":\"Here we show you how to properly configure and install PostgreSQL 16 open source database on Ubuntu 22.04 Linux systems\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg\",\"width\":1280,\"height\":680,\"caption\":\"How to Install PostgreSQL 16 on Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install PostgreSQL 16 on Ubuntu 22.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install PostgreSQL 16 on Ubuntu 22.04","description":"Here we show you how to properly configure and install PostgreSQL 16 open source database on Ubuntu 22.04 Linux systems","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":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install PostgreSQL 16 on Ubuntu 22.04","og_description":"Here we show you how to properly configure and install PostgreSQL 16 open source database on Ubuntu 22.04 Linux systems","og_url":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2023-10-02T16:25:07+00:00","article_modified_time":"2023-10-02T16:25:11+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install PostgreSQL 16 on Ubuntu 22.04","datePublished":"2023-10-02T16:25:07+00:00","dateModified":"2023-10-02T16:25:11+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/"},"wordCount":517,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg","keywords":["Database","Linux","Open Source","Optimization","Performance","PostgreSQL","Server","Software development","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/","url":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/","name":"How to Install PostgreSQL 16 on Ubuntu 22.04","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg","datePublished":"2023-10-02T16:25:07+00:00","dateModified":"2023-10-02T16:25:11+00:00","description":"Here we show you how to properly configure and install PostgreSQL 16 open source database on Ubuntu 22.04 Linux systems","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2023\/10\/Install-PostgreSQL-16-on-Ubuntu.jpg","width":1280,"height":680,"caption":"How to Install PostgreSQL 16 on Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-postgresql-16-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install PostgreSQL 16 on Ubuntu 22.04"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13309"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13309"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13309\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13317"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13309"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}