{"id":12788,"date":"2022-10-26T04:21:44","date_gmt":"2022-10-26T08:21:44","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=12788"},"modified":"2022-10-26T05:05:16","modified_gmt":"2022-10-26T09:05:16","slug":"install-openjdk-17-on-ubuntu-22-04","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/","title":{"rendered":"How to Install OpenJDK 17 on Ubuntu 22.04"},"content":{"rendered":"\n

In this tutorial we will be showing how to install OpenJDK 17 on Ubuntu 22.04. The steps outlined here can be applied to prior Ubuntu releases as well as other Debian-based Linux distros.<\/p>\n\n\n\n

OpenJDK is the development kit for Java. Java<\/a> is a general-purpose, class-based, object-oriented multipurpose programming language. Java’s core strengths is that the compiled Java code can be run on all platforms that support Java without the need for recompilation. It is secure and reliable by design therefore it is widely used for developing Java applications in Enterprise, consumer situations.<\/p>\n\n\n\n

Why OpenJDK 17<\/h2>\n\n\n\n

OpenJDK 17 for Java 17 LTS is the latest long-term support release supported until September 2024 while Java 19 will receive updates under these terms, until March 2023 when it will be superseded by JDK 20.<\/p>\n\n\n\n

OpenJDK 17 is available both through Ubuntu’s default repository as well as a standalone download package for manual installation from the official download sites<\/a>.<\/p>\n\n\n\n

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

A working Ubuntu system with a sudo user set up and configured.<\/p>\n\n\n\n

Install OpenJDK 17 on Ubuntu 22.04<\/h2>\n\n\n\n

The easiest approach to installing OpenJDK 17 on Ubuntu is to use the Apt package manager. The first this we need to do is to update the Apt package manager and upgrade the system using the following commands:<\/p>\n\n\n\n

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

Next, install the package using the following command:<\/p>\n\n\n\n

$ sudo apt install openjdk-17-jdk<\/code><\/pre>\n\n\n\n

Side Note<\/strong>: You can always install the default OpenJDK release for your Ubuntu release by running this command:<\/p>\n\n\n\n

$ sudo apt install default-jdk<\/code><\/pre>\n\n\n\n

Verify the location of the newly installed java files with the update-alternatives<\/code> command below. We do this in case you have other Java versions on your system:<\/p>\n\n\n\n

$ update-alternatives --list java<\/code><\/pre>\n\n\n\n
$ update-alternatives --list java\n\nOutput\n\/usr\/lib\/jvm\/java-12-openjdk-amd64\/bin\/java\n\/usr\/lib\/jvm\/java-17-openjdk-amd64\/bin\/java<\/code><\/pre>\n\n\n\n

Install OpenJDK 17 From Source<\/h2>\n\n\n\n

Alternatively, you can install the OpenJDK package manually. The latest version as of this posting is JDK 17.0.2 General-Availability Release.<\/p>\n\n\n\n

Copy the URL for the Linux\/x64 build from the 17.0.2 (build 17.0.2+8) section<\/a> and download the files with the wget<\/code> command:<\/p>\n\n\n\n

$ sudo wget https:\/\/download.java.net\/java\/GA\/jdk17.0.2\/dfd4a8d0985749f896bed50d7138ee7f\/8\/GPL\/openjdk-17.0.2_linux-x64_bin.tar.gz<\/code><\/pre>\n\n\n\n

Then, extract the downloaded file. In this example we will to extract it to the \/opt<\/code> directory with the following command:<\/p>\n\n\n\n

$ sudo tar xf openjdk-17.0.2_linux-x64_bin.tar.gz -C \/opt<\/code><\/pre>\n\n\n\n

Set Java 17 as the Default Version<\/h2>\n\n\n\n

Whether or not you have another Java version on your system you need to set the JAVA_HOME<\/code> environment variable. This will tell applications on your system that depend on java where to find it.<\/p>\n\n\n\n

Edit or create a jdk_home.sh<\/code> script in the \/etc\/profile.d<\/code> directory:<\/p>\n\n\n\n

$ sudo nano \/etc\/profile.d\/jdk_home.sh<\/code><\/pre>\n\n\n\n

Enter or edit these directives into the file with the following result:<\/p>\n\n\n\n

export JAVA_HOME=\/opt\/jdk-17.0.2\nexport PATH=$PATH:$JAVA_HOME\/bin<\/code><\/pre>\n\n\n\n

Save and close the file.<\/p>\n\n\n\n

You can confirm your OpenJDK 17 installation by running this:<\/p>\n\n\n\n

$ java --version<\/code><\/pre>\n\n\n\n

You can also check your JAVA_HOME<\/code> environment variable anytime by running:<\/p>\n\n\n\n

$ echo $JAVA_HOME<\/code><\/pre>\n\n\n\n

The above steps should be performed for any future updates to your Java installations.<\/p>\n\n\n\n

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

You have seen how simple it is to install install OpenJDK 17 on Ubuntu 22.04 where the same step can be applied to other versions of Ubuntu and Debian-based Linux distros.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this tutorial we will be showing how to install OpenJDK 17 on Ubuntu 22.04. The steps outlined here can be applied to prior Ubuntu releases as well as other…<\/p>\n","protected":false},"author":1,"featured_media":12789,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,27,16,18],"tags":[183,193,327,354,424,433,449,472,544,573,591,598],"yoast_head":"\nHow to Install OpenJDK 17 on Ubuntu 22.04<\/title>\n<meta name=\"description\" content=\"This tutorial shows how to install OpenJDK 17 on Ubuntu 22.04 using apt package manager as well as the manual download\" \/>\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\/install-openjdk-17-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 OpenJDK 17 on Ubuntu 22.04\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows how to install OpenJDK 17 on Ubuntu 22.04 using apt package manager as well as the manual download\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/install-openjdk-17-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=\"2022-10-26T08:21:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-26T09:05:16+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.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\/install-openjdk-17-on-ubuntu-22-04\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install OpenJDK 17 on Ubuntu 22.04\",\"datePublished\":\"2022-10-26T08:21:44+00:00\",\"dateModified\":\"2022-10-26T09:05:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/\"},\"wordCount\":448,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg\",\"keywords\":[\"Debian\",\"DevOps\",\"Java\",\"Linux\",\"Open Source\",\"Optimization\",\"Performance\",\"Programming Languages\",\"Software development\",\"Systems Administration\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Programming\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/\",\"url\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/\",\"name\":\"How to Install OpenJDK 17 on Ubuntu 22.04\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg\",\"datePublished\":\"2022-10-26T08:21:44+00:00\",\"dateModified\":\"2022-10-26T09:05:16+00:00\",\"description\":\"This tutorial shows how to install OpenJDK 17 on Ubuntu 22.04 using apt package manager as well as the manual download\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install OpenJDK 17 on Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install OpenJDK 17 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 OpenJDK 17 on Ubuntu 22.04","description":"This tutorial shows how to install OpenJDK 17 on Ubuntu 22.04 using apt package manager as well as the manual download","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\/install-openjdk-17-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install OpenJDK 17 on Ubuntu 22.04","og_description":"This tutorial shows how to install OpenJDK 17 on Ubuntu 22.04 using apt package manager as well as the manual download","og_url":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2022-10-26T08:21:44+00:00","article_modified_time":"2022-10-26T09:05:16+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.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\/install-openjdk-17-on-ubuntu-22-04\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install OpenJDK 17 on Ubuntu 22.04","datePublished":"2022-10-26T08:21:44+00:00","dateModified":"2022-10-26T09:05:16+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/"},"wordCount":448,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg","keywords":["Debian","DevOps","Java","Linux","Open Source","Optimization","Performance","Programming Languages","Software development","Systems Administration","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Programming","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/","url":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/","name":"How to Install OpenJDK 17 on Ubuntu 22.04","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg","datePublished":"2022-10-26T08:21:44+00:00","dateModified":"2022-10-26T09:05:16+00:00","description":"This tutorial shows how to install OpenJDK 17 on Ubuntu 22.04 using apt package manager as well as the manual download","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/10\/install-OpenJDK-17-on-Ubuntu-22.04.jpg","width":1280,"height":680,"caption":"Install OpenJDK 17 on Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/install-openjdk-17-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install OpenJDK 17 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\/12788"}],"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=12788"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12788\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/12789"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=12788"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=12788"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=12788"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}