{"id":3330,"date":"2017-09-27T12:34:44","date_gmt":"2017-09-27T16:34:44","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=3330"},"modified":"2017-09-27T12:34:44","modified_gmt":"2017-09-27T16:34:44","slug":"install-wordpress-u17","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/","title":{"rendered":"How to Install WordPress on Ubuntu 17"},"content":{"rendered":"<h1>How to Install WordPress on Ubuntu 17<\/h1>\n<p>WordPress is a commonly known and popular content management system (CMS), which means it is an application used to create and modify digitally created content. While WordPress has become the most popular option among users, many CMS feature similar features, such as search engine optimized web addresses, integrated help functions, compliance with accessibility requirements and more.<\/p>\n<p>WordPress and other CMS also reduce the knowledge needed to create content, since they remove the code-from-scratch mentality of traditional websites. CMS also allows users to create a simple, unified feel across multiple pages, manage user permissions easily, and even save and revert to previous versions.<\/p>\n<h2>Getting Started<\/h2>\n<p>Before we jump into how to install WordPress, you need to make sure you&#8217;ve acquired at least one node, hosted on a cloud server or a dedicated server. This node will need to have Linux Ubuntu 17.04 LTS installed.<\/p>\n<p>For this installation, you also need to ensure Secure Shell (SSH) root access is setup for your server. If you&#8217;re unfamiliar, SSH is a particular network protocol that&#8217;s used when executing services over an unsecured network. When using SSH, the implemented services are performed securely even without a secure network.<\/p>\n<h2>Tutorial<\/h2>\n<p><strong>Installing WordPress<\/strong><\/p>\n<div class=\"row\">\n<div class=\"col-lg-6\">\n<p>After setting up your cloud or dedicated server node, installing Ubuntu 17.04 LTS and confirming that you have SSH root access, it&#8217;s time to learn how to install WordPress on your node.<\/p>\n<p>The first step in almost any successful installation is confirming that your software, or in this case server, is up to date. We&#8217;re going to verify that your server is running the most recent version of its&#8217; software and that any necessary repositories are current:<br \/>\n<code>apt-get update && apt-get upgrade -y<\/code><\/p>\n<\/div>\n<div class=\"col-lg-6\">\n<div class=\"videoWrapper\"><iframe src=\"https:\/\/www.youtube.com\/embed\/7S6wad8qHr4\" frameborder=\"0\" allowfullscreen><\/iframe><\/div>\n<\/div>\n<\/div>\n<p>Once we&#8217;ve confirmed our server is updated, we need to go through the steps to create a functional LAMP setup, which means installing Linux, Apache, MySQL, and PHP. As we&#8217;ve already verified we have Linux Ubuntu 17.04 LTS installed, we&#8217;re going to proceed with installing Apache.<\/p>\n<p><strong>Installing Apache2<\/strong><\/p>\n<p>The following commands will allow you to gather the necessary repositories for the Apache2 installation:<br \/>\n<code>apt-get install apache2 -y<\/code><\/p>\n<p>After allowing the Apache2 installation scripts to finish processing, we need to confirm that the Apache2 service is correctly installed, running properly, and enabled at startup:<br \/>\n<code>systemctl status apache2.service<br \/>\nsystemctl enable apache2.service<\/code><\/p>\n<p>If you encounter an issue with Apache2 not currently running, it may be started with the following command:<br \/>\n<code>systemctl start apache2.service<\/code><\/p>\n<p><strong>Installing MySQL Server<\/strong><\/p>\n<p>We&#8217;ve confirmed Apache2 is installed and running, so it&#8217;s time to proceed with the MySQL server setup:<br \/>\n<code>apt-get install mysql-server mysql-client -y<\/code><\/p>\n<p>While you proceed with the MySQL server installation process, you will receive a prompt for the MySQL root password. Please make sure you save this password someplace safe since you will need it later during the setup.<\/p>\n<p>Once the installation of the MySQL server has completed, you will want to make sure you secure the server using the following command:<br \/>\n<code>mysql_secure_installation<\/code><\/p>\n<p>Make sure to follow the prompts you receive, using the below answers to complete each prompt:<\/p>\n<p><code class=\"gris\">Enter password for user root: ENTER ROOT PASSWORD<br \/>\nPress y|Y for Yes, any other key for No: n<br \/>\nChange the password for root ? n<br \/>\nRemove anonymous users? y<br \/>\nDisallow root login remotely? y<br \/>\nRemove test database and access to it? y<br \/>\nReload privilege tables now? y<\/code><\/p>\n<p>Similar to the Apache2 setup, we need to confirm that MySQL is running and ensure that MySQL is setup to start on boot:<br \/>\n<code>systemctl status mysql.service<br \/>\nsystemctl enable mysql.service<\/code><\/p>\n<p>Now that the Apache2 and MySQL server is installed on your node, it&#8217;s time to configure your MySQL credentials for the future WordPress setup. This step will require your MySQL root password from a few steps earlier:<br \/>\n<code>mysql -u root -p<\/code><\/p>\n<p>After signing into your MySQL instance, you need to create the wordpressdb database using the following command:<br \/>\n<code>mysql> CREATE DATABASE wordpressdb;<\/code><\/p>\n<p>Once created, run the following command to create a new user named &#8220;wpuser&#8221; with a new password. Then grant that user access to the wordpressdb database. During setup, it&#8217;s important to replace &#8220;type_new_password_here&#8221; with your chosen password:<br \/>\n<code>mysql> GRANT ALL ON wordpressdb.* TO 'wpuser'@'localhost' IDENTIFIED BY 'type_new_password_here';<\/code><\/p>\n<p>When your new user has been created, it&#8217;s important to reload the privileges for MySQL before leaving the console:<br \/>\n<code>mysql> FLUSH PRIVILEGES;<br \/>\nmysql> exit<\/code><\/p>\n<p><strong>Installing PHP and Related Modules<\/strong><\/p>\n<p>We&#8217;ve completed the Apache2 and MySQL installations, so it&#8217;s time to proceed with installing PHP. Utilizing the below command, initiate the PHP installation:<br \/>\n<code>apt-get install php libapache2-mod-php php-mysql php-curl php-gd php-pear php-imagick php-imap php-mcrypt php-recode php-tidy php-xmlrpc wget -y<\/code><\/p>\n<p><strong>Setting Up WordPress<\/strong><\/p>\n<p>Now that we&#8217;ve finished installing Apache2, MySQL, and PHP, it&#8217;s time to install the latest version of WordPress to your server:<br \/>\n<code>cd \/tmp\/ && wget http:\/\/wordpress.org\/latest.tar.gz<\/code><\/p>\n<p>Once this completes, we need to extract the archive and then install the extracted archive under the apache vhost folder:<br \/>\n<code>tar -xzvf latest.tar.gz<br \/>\ncp -R wordpress\/* \/var\/www\/html<\/code><\/p>\n<p>After installing the extracted archive, it&#8217;s important to remove the default index page from Apache2:<br \/>\n<code>rm -rf \/var\/www\/html\/index.html<\/code><\/p>\n<p><strong>Configuring WordPress<\/strong><\/p>\n<p>We&#8217;re getting close to finalizing your WordPress setup. Now we will copy the default configuration file example that&#8217;s provided by WordPress:<br \/>\n<code.cp \/var\/www\/html\/wp-config-sample.php \/var\/www\/html\/wp-config.php<\/code><\/p>\n<p>Once you&#8217;ve copied the default configuration file, you need to edit it to match the below setup:<br \/>\n<code>nano \/var\/www\/html\/wp-config.php<\/code><\/p>\n<p>According to what was created in the MySQL setup earlier, these are the areas that need modification:<br \/>\n<em>define(&#8216;DB_NAME&#8217; => The database name we have created for this purpose, in our case: wordpressdb<\/p>\n<p>define(&#8216;DB_USER&#8217; => The database user we have created to access this wordpressdb database<\/p>\n<p>define(&#8216;DB_PASSWORD&#8217; => The database password we have created for this user (during: mysql> GRANT ALL ON wordpressdb.* TO &#8216;wpuser&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;type_new_password_here&#8217;; )<\/em><\/p>\n<p><code class=\"gris\">\/\/ ** MySQL settings - You can get this info from your web host ** \/\/<br \/>\n\/** The name of the database for WordPress *\/<br \/>\ndefine('DB_NAME', 'wordpressdb');<br \/>\n\/** MySQL database username *\/<br \/>\ndefine('DB_USER', 'wpuser');<br \/>\n\/** MySQL database password *\/<br \/>\ndefine('DB_PASSWORD', 'type_new_password_here');<br \/>\n\/** MySQL hostname *\/<br \/>\ndefine('DB_HOST', 'localhost');<br \/>\n\/** Database Charset to use in creating database tables. *\/<br \/>\ndefine('DB_CHARSET', 'utf8');<br \/>\n\/** The Database Collate type. Don't change this if in doubt. *\/<br \/>\ndefine('DB_COLLATE', '');<\/code><\/p>\n<p>Then you may save and close the editor.<\/p>\n<p>Now that you&#8217;ve edited the WordPress config file with new settings, it&#8217;s time to change the Apache2 directory permissions and enable Apache-Modules, which allows WordPress to function properly:<br \/>\n<code>chown -R www-data:www-data \/var\/www\/html\/<br \/>\nchmod -R 755 \/var\/www\/html\/<br \/>\na2enmod headers<br \/>\na2enmod rewrite<br \/>\na2enmod env<br \/>\na2enmod dir<br \/>\na2enmod mime<\/code><\/p>\n<p>Once the permissions have been changed and modules enabled, it&#8217;s time to restart Apache2:<br \/>\n<code>systemctl restart apache2<\/code><\/p>\n<p><strong>Final Steps<\/strong><\/p>\n<p>The server part of your setup is complete. Now you&#8217;ll open your internet browser and access your server&#8217;s IP address.<\/p>\n<p>For example, if the IP address for your server were 1.2.3.4, then you would open your browser and go to the following link: http:\/\/1.2.3.4<\/p>\n<p>You will see the WordPress default setup page at this point, prompting you for the language of your WordPress setup and then prompting you to create an administrative account.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1473\" height=\"891\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png\" alt=\"Wordpress-Install\" class=\"aligncenter size-full wp-image-3333\" \/><\/p>\n<p>Congratulations! You&#8217;ve just completed your WordPress setup on Ubuntu 17.04 LTS.<\/p>\n<h2>Conclusion<\/h2>\n<p>You&#8217;ve successfully moved through every step necessary to install WordPress on your dedicated node running Ubuntu 17.04 LTS. You are not able to begin using the WordPress CMS and exploring the features and benefits it provides when operated from a dedicated server. If you had success following this guide and found it helpful, please share it with other individuals that may be setting up their WordPress server.<\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>How to Install WordPress on Ubuntu 17 WordPress is a commonly known and popular content management system (CMS), which means it is an application used to create and modify digitally created content. While WordPress has become the most popular option among users, many CMS feature similar features, such as search engine optimized web addresses, integrated<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[70],"tags":[],"class_list":["post-3330","post","type-post","status-publish","format-standard","hentry","category-web-hosting","operating_system-ubuntu-17-04","applications-wordpress2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Wordpress on Ubuntu 17 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to install Wordpress on Ubuntu 17.04 LTS. Before we jump into how to install Wordpress, you need to make sure ...\" \/>\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.globo.tech\/learning-center\/install-wordpress-u17\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Wordpress on Ubuntu 17 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to install Wordpress on Ubuntu 17.04 LTS. Before we jump into how to install Wordpress, you need to make sure ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-27T16:34:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/\"},\"author\":{\"name\":\"GloboTech Communications\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"headline\":\"How to Install WordPress on Ubuntu 17\",\"datePublished\":\"2017-09-27T16:34:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/\"},\"wordCount\":1033,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/image2017-8-30_7-53-42.png\",\"articleSection\":[\"Web Hosting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/\",\"name\":\"How to Install Wordpress on Ubuntu 17 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/image2017-8-30_7-53-42.png\",\"datePublished\":\"2017-09-27T16:34:44+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"This tutorial will show you how to install Wordpress on Ubuntu 17.04 LTS. Before we jump into how to install Wordpress, you need to make sure ...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/image2017-8-30_7-53-42.png\",\"contentUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/image2017-8-30_7-53-42.png\",\"width\":1473,\"height\":891,\"caption\":\"Wordpress-Install\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-wordpress-u17\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install WordPress on Ubuntu 17\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\\\/\\\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Wordpress on Ubuntu 17 - Globo.Tech","description":"This tutorial will show you how to install Wordpress on Ubuntu 17.04 LTS. Before we jump into how to install Wordpress, you need to make sure ...","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.globo.tech\/learning-center\/install-wordpress-u17\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Wordpress on Ubuntu 17 - Globo.Tech","og_description":"This tutorial will show you how to install Wordpress on Ubuntu 17.04 LTS. Before we jump into how to install Wordpress, you need to make sure ...","og_url":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/","og_site_name":"Globo.Tech","article_published_time":"2017-09-27T16:34:44+00:00","og_image":[{"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png","type":"","width":"","height":""}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#article","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/"},"author":{"name":"GloboTech Communications","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"headline":"How to Install WordPress on Ubuntu 17","datePublished":"2017-09-27T16:34:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/"},"wordCount":1033,"commentCount":0,"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png","articleSection":["Web Hosting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/","url":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/","name":"How to Install Wordpress on Ubuntu 17 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png","datePublished":"2017-09-27T16:34:44+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"This tutorial will show you how to install Wordpress on Ubuntu 17.04 LTS. Before we jump into how to install Wordpress, you need to make sure ...","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/image2017-8-30_7-53-42.png","width":1473,"height":891,"caption":"Wordpress-Install"},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/install-wordpress-u17\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to Install WordPress on Ubuntu 17"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3330","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=3330"}],"version-history":[{"count":9,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3330\/revisions"}],"predecessor-version":[{"id":4453,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3330\/revisions\/4453"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=3330"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=3330"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=3330"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}