{"id":12588,"date":"2022-09-11T07:02:33","date_gmt":"2022-09-11T11:02:33","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=12588"},"modified":"2022-09-11T07:31:57","modified_gmt":"2022-09-11T11:31:57","slug":"initial-server-setup-for-ubuntu-22-04-systems","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/","title":{"rendered":"Initial Server Setup for Ubuntu 22.04 Systems"},"content":{"rendered":"\n

When you first create a new Ubuntu server, you should perform some important configuration steps that will increase the security and usability of your server and give you a good foundation usage of your system. In this tutorial we will focus on initial server setup for Ubuntu 22.04.<\/p>\n\n\n\n

Initial Server Setup for Ubuntu 22.04<\/h2>\n\n\n\n

Step 1 \u2014 Creating a New User<\/h2>\n\n\n\n

When you first access your Ubuntu 22.04 server after installation, you will do so as root user. The root user is the administrative user in a Linux environment with elevated privileges. Because of that, users are discouraged from using it regularly.<\/p>\n\n\n\n

To avoid destroying your Ubuntu<\/a> system intentionally or worse, by accident we will be setting up a new user account with reduced privileges for every-day use, and increased privileges on a need-be basis.<\/p>\n\n\n\n

Once you log in as root<\/code>, you can add the new user account. In our examples going forward we will create a new user called ben. You can use a username that is more appropriate to you:<\/p>\n\n\n\n

# adduser ben<\/code><\/pre>\n\n\n\n

Follow the prompts presented to your and remember to set a strong password. The information requested in the prompts are optional and can be skipped by simply pressing Enter.<\/p>\n\n\n\n

Step 2 \u2014 Grant Administrative Privileges<\/h2>\n\n\n\n

The new user account (ben) is now available with regular account privileges. More often than not you will sometimes need to perform administrative tasks as the root user. It will be cumbersome to keep logging out of the current user to log in as root when the situation arises.<\/p>\n\n\n\n

Ubuntu provides a more elegant way with superuser or root privileges for your user’s regular account. These privileges will allow your normal user to run commands with administrative privileges by prepending the word sudo<\/code> before the command.<\/p>\n\n\n\n

There is a sudo system group that facilitates this feature. By default on Ubuntu 22.04, users who are members of the sudo group are allowed to use the sudo command.<\/p>\n\n\n\n

As root, run this command to add your new user to the sudo<\/code> group:<\/p>\n\n\n\n

# usermod -aG sudo ben<\/code><\/pre>\n\n\n\n

From now on, When logged in as ben you can execute commands that require superuser privileges using the word sudo.<\/p>\n\n\n\n

Step 3 \u2014 Set up a Firewall<\/h2>\n\n\n\n

In Ubuntu 22.04 servers you can use the UFW firewall to restrict connections to certain services through specific ports and IPs. UFW is ideal for setting up a basic firewall rules.<\/p>\n\n\n\n

Some applications installed via apt register their profiles with UFW. These profiles allow UFW to manage these applications by name rather than specifying the default ports<\/a>.<\/p>\n\n\n\n

You can examine the list of installed UFW profiles by typing:<\/p>\n\n\n\n

# ufw app list<\/code><\/pre>\n\n\n\n
Output\nAvailable applications:\n  OpenSSH<\/code><\/pre>\n\n\n\n

Here you can see that OpenSSH, the service that allows you to connect to your server using ssh<\/code> has a profile registered with UFW. You will need to make sure that the firewall allows SSH connections so that you can log into your server next time from a remote terminal. Allow these connections by typing:<\/p>\n\n\n\n

# ufw allow OpenSSH<\/code><\/pre>\n\n\n\n

Now, you can enable the firewall:<\/p>\n\n\n\n

# ufw enable<\/code><\/pre>\n\n\n\n

You can now view which connections are allowed through your firewall by typing:<\/p>\n\n\n\n

# ufw status<\/code><\/pre>\n\n\n\n
Output\nStatus: active\n\nTo                         Action      From\n--                         ------      ----\nOpenSSH                    ALLOW       Anywhere\nOpenSSH (v6)               ALLOW       Anywhere (v6)<\/code><\/pre>\n\n\n\n

The output shows that the firewall is currently blocking all connections except for SSH through IPv4 and IPv6 addresses. When you install and configure other applications and services, you will need to repeat the same to adjust the firewall settings to allow the required traffic to your server targeting those services.<\/p>\n\n\n\n

Step 4 \u2014 Confirm External Access for Your Regular User<\/h2>\n\n\n\n

You may want to open a new terminal before signing out of root in case there is some misconfiguration you can fix things before proceeding.<\/p>\n\n\n\n

SSH access for your new user depends on whether your server\u2019s root account uses a password or SSH keys for authentication. This would have been set up during server installation.<\/p>\n\n\n\n

When root Account Uses Password Authentication<\/h2>\n\n\n\n

If you logged in to your root account using a password then password authentication is already enabled for SSH. With your new regular user, you can SSH to your new user account in the new terminal session using this command:<\/p>\n\n\n\n

$ ssh ben@your_server_ip<\/code><\/pre>\n\n\n\n

Once logged in you can test the elevated administrative privileges using the following syntax, $ sudo command<\/code> for example:<\/p>\n\n\n\n

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

You will be prompted for your regular user’s password when using sudo<\/code> for the first time each session and periodically afterward when you have been idle for some time.<\/p>\n\n\n\n

To enhance your server’s security, we strongly recommend setting up SSH keys instead of using password authentication.<\/p>\n\n\n\n

When root Account Uses SSH Key Authentication<\/h2>\n\n\n\n

If you logged in to your root account using SSH keys, then password authentication is disabled for SSH. In that case the regular user will have to log in with an SSH key. You can do this by adding a copy of your local public key to your new user’s ~\/.ssh\/authorized_keys<\/code> file.<\/p>\n\n\n\n

This public key can be found in the root account’s ~\/.ssh\/authorized_keys<\/code> file on the server. All you need to do is copy that file to the regular user’s home directory maintaining the directory structure, ownership, and permissions with one command using rsync<\/code>.<\/p>\n\n\n\n

# rsync --archive --chown=ben:ben ~\/.ssh \/home\/ben<\/code><\/pre>\n\n\n\n

You may now open a new terminal session and log in using without a password:<\/p>\n\n\n\n

$ ssh ben@your_server_ip<\/code><\/pre>\n\n\n\n

Keep in mind that you will be prompted for the regular user’s password when escalating privilges using sudo.<\/p>\n\n\n\n

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

This is the initial server setup for Ubuntu 22.04 to lay as a foundation for making the best out of your server. sudo<\/code> privileges allows you to install other services and application as well as update and upgrade your system from the regular user account.<\/p>\n","protected":false},"excerpt":{"rendered":"

When you first create a new Ubuntu server, you should perform some important configuration steps that will increase the security and usability of your server and give you a good…<\/p>\n","protected":false},"author":1,"featured_media":12589,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,28,16,18],"tags":[354,424,433,449,1212,591,598],"yoast_head":"\nHow to Configure Initial Server Setup for Ubuntu 22.04 Systems<\/title>\n<meta name=\"description\" content=\"With these configuration guides you will be ready for the initial server setup for 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\/initial-server-setup-for-ubuntu-22-04-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Configure Initial Server Setup for Ubuntu 22.04 Systems\" \/>\n<meta property=\"og:description\" content=\"With these configuration guides you will be ready for the initial server setup for Ubuntu 22.04 Linux systems\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/\" \/>\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-09-11T11:02:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-11T11:31:57+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"Initial Server Setup for Ubuntu 22.04 Systems\",\"datePublished\":\"2022-09-11T11:02:33+00:00\",\"dateModified\":\"2022-09-11T11:31:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/\"},\"wordCount\":901,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg\",\"keywords\":[\"Linux\",\"Open Source\",\"Optimization\",\"Performance\",\"SSH\",\"Tools\",\"Ubuntu\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/\",\"url\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/\",\"name\":\"How to Configure Initial Server Setup for Ubuntu 22.04 Systems\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg\",\"datePublished\":\"2022-09-11T11:02:33+00:00\",\"dateModified\":\"2022-09-11T11:31:57+00:00\",\"description\":\"With these configuration guides you will be ready for the initial server setup for Ubuntu 22.04 Linux systems\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Initial Server Setup for Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Initial Server Setup for Ubuntu 22.04 Systems\"}]},{\"@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 Configure Initial Server Setup for Ubuntu 22.04 Systems","description":"With these configuration guides you will be ready for the initial server setup for 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\/initial-server-setup-for-ubuntu-22-04-systems\/","og_locale":"en_US","og_type":"article","og_title":"How to Configure Initial Server Setup for Ubuntu 22.04 Systems","og_description":"With these configuration guides you will be ready for the initial server setup for Ubuntu 22.04 Linux systems","og_url":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2022-09-11T11:02:33+00:00","article_modified_time":"2022-09-11T11:31:57+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"Initial Server Setup for Ubuntu 22.04 Systems","datePublished":"2022-09-11T11:02:33+00:00","dateModified":"2022-09-11T11:31:57+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/"},"wordCount":901,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg","keywords":["Linux","Open Source","Optimization","Performance","SSH","Tools","Ubuntu"],"articleSection":["Articles","Guides","How To","Software","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/","url":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/","name":"How to Configure Initial Server Setup for Ubuntu 22.04 Systems","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg","datePublished":"2022-09-11T11:02:33+00:00","dateModified":"2022-09-11T11:31:57+00:00","description":"With these configuration guides you will be ready for the initial server setup for Ubuntu 22.04 Linux systems","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/09\/Initial-Server-Setup-for-Ubuntu-22.04.jpg","width":1280,"height":680,"caption":"Initial Server Setup for Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/initial-server-setup-for-ubuntu-22-04-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"Initial Server Setup for Ubuntu 22.04 Systems"}]},{"@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\/12588"}],"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=12588"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/12588\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/12589"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=12588"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=12588"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=12588"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}