{"id":752,"date":"2014-05-08T16:17:45","date_gmt":"2014-05-08T19:17:45","guid":{"rendered":"http:\/\/www.dbarj.com.br\/?p=752"},"modified":"2014-10-09T23:49:37","modified_gmt":"2014-10-10T02:49:37","slug":"howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server","status":"publish","type":"post","link":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/","title":{"rendered":"Howto repoint your Oracle Management Agent to a different OEM 12c Server"},"content":{"rendered":"<p>Maybe one day you might face a situation where you\u00a0lose, change or reinstall your Oracle EM 12c Server and if you do so, you won&#8217;t need to reinstall all the OMS agents running on your client hosts. All you need is to create a new instance of the agent inside each of your client hosts and configure them.<\/p>\n<p>Let&#8217;s do it in 4 steps. Before everything, you need to be sure that your agent will be pointing to a new OMS of the same version or of a higher version. Never lower!<\/p>\n<pre class=\"lang:vim decode:true\">Eg:\r\nAgent = 12.1.0.1.0\r\nOMS = 12.1.0.3.0<\/pre>\n<p>First of all, create a response file somewhere like &#8220;<em>~\/deploy.rsp<\/em>&#8221; with the following variables set:<\/p>\n<pre class=\"lang:vim decode:true\">OMS_HOST=oraem12ctrj001\r\nEM_UPLOAD_PORT=4903\r\nAGENT_REGISTRATION_PASSWORD=abc@1234\r\nAGENT_PORT=3872<\/pre>\n<p>The response file must contain the OMS_HOST, EM_UPLOAD_PORT, and AGENT_REGISTRATION_PASSWORD parameters. OMS_HOST and EM_UPLOAD_PORT must match your new EM Server host and port. If you use a hostname string instead of an IP in OMS_HOST variable, do not forget to update or set it up inside &#8220;<em>\/etc\/hosts<\/em>&#8221; file. For the agent registration password, you can create a new one in your EM 12c web panel under <strong>&#8220;Setup-&gt;Security-&gt;Registration Passwords&#8221;<\/strong>. You can also define the variable ORACLE_HOSTNAME if you wish to change the host target name that will be presented on your OMS Server. If you omit it, the old one will be used.<\/p>\n<p>Next step is to be sure that the agent is stopped in the client. Logged in as the agent binary owner, run: emctl stop agent<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[emc12@oracbddrjs001 ~]$ emctl stop agent\r\nOracle Enterprise Manager Cloud Control 12c Release 3\r\nCopyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.\r\nStopping agent ..... stopped.\r\n[emc12@oracbddrjs001 ~]$<\/pre>\n<p>Second step is to remove the old instance of the agent. In this example, the agent base folder is &#8220;<em>\/u01\/app\/emc12\/emagent&#8221;<\/em>. We are going to rename the <strong>agent_inst<\/strong> folder to <strong>agent_inst_old<\/strong>:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[emc12@oracbddrjs001 ~]$ cd \/u01\/app\/emc12\/emagent\/\r\n[emc12@oracbddrjs001 emagent]$ ls -la\r\ntotal 36\r\ndrwxr-xr-x. 6 emc12 oinstall 4096 May  8 09:46 .\r\ndrwxr-xr-x. 3 emc12 oinstall 4096 Nov 18 20:16 ..\r\n-rw-rw-r--  1 emc12 oinstall  178 Jun 22  2013 agentimage.properties\r\ndrwxr-xr-x  6 emc12 oinstall 4096 May  8 09:25 agent_inst\r\ndrwxr-xr-x  3 emc12 oinstall 4096 Nov 22 11:48 core\r\ndrwxr-xr-x  8 emc12 oinstall 4096 Dec 11 01:16 plugins\r\n-rwxr-xr-x  1 emc12 oinstall  223 Nov 22 08:49 plugins.txt\r\n-rw-r--r--  1 emc12 oinstall  298 May  7 16:46 plugins.txt.status\r\ndrwxr-xr-x  5 emc12 oinstall 4096 May  7 16:49 sbin\r\n[emc12@oracbddrjs001 emagent]$ mv agent_inst agent_inst_old\r\n[emc12@oracbddrjs001 emagent]$<\/pre>\n<p>Now, it&#8217;s time to reconfigure the agent. To do it, we are going to execute the\u00a0<strong>agentDeploy.sh<\/strong> script inside the core folder passing the parameterized\u00a0variables AGENT_BASE_DIR, RESPONSE_FILE and using the <strong>-configOnly<\/strong> flag:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[emc12@oracbddrjs001 ~]$ \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/sysman\/install\/agentDeploy.sh AGENT_BASE_DIR=\/u01\/app\/emc12\/emagent\/ RESPONSE_FILE=~\/deploy.rsp -configOnly\r\n\r\nExecuting command : \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/jdk\/bin\/java -classpath \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/oui\/jlib\/OraInstaller.jar:\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/oui\/jlib\/xmlparserv2.jar:\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/oui\/jlib\/srvm.jar:\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/oui\/jlib\/emCfg.jar:\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/jlib\/agentInstaller.jar:\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/oui\/jlib\/share.jar oracle.sysman.agent.installer.AgentInstaller \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0 .\/core\/12.1.0.3.0\/sysman\/install \/u01\/app\/emc12\/emagent \/u01\/app\/emc12\/emagent\/agent_inst AGENT_BASE_DIR=\/u01\/app\/emc12\/emagent\r\n\r\nPerforming the agent configuration...\r\nExecuting command: \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/oui\/bin\/runConfig.sh ORACLE_HOME=\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0 RESPONSE_FILE=\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/agent.rsp ACTION=configure MODE=perform COMPONENT_XML={oracle.sysman.top.agent.11_1_0_1_0.xml} RERUN=true\r\nConfiguration Log Location:\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/cfgtoollogs\/cfgfw\/CfmLogger&lt;timestamp&gt;.log\r\nAgent Configuration completed successfully\r\n\r\nThe following configuration scripts need to be executed as the \"root\" user.\r\n#!\/bin\/sh\r\n#Root script to run\r\n \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/root.sh\r\nTo execute the configuration scripts:\r\n1. Open a terminal window\r\n2. Log in as \"root\"\r\n3. Run the scripts\r\nAgent Deployment Successful.\r\nAgent deployment log location:\r\n\/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/cfgtoollogs\/agentDeploy\/agentDeploy_2014-05-07_16-45-50-PM.log\r\nAgent deployment completed successfully.\r\n[emc12@oracbddrjs001 emagent]$<\/pre>\n<p>Great, everything is almost done. Execute the root script:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[root@oracbddrjs001 ~]# \/u01\/app\/emc12\/emagent\/core\/12.1.0.3.0\/root.sh\r\nFinished product-specific root actions.\r\n\/etc exist\r\nFinished product-specific root actions.\r\n[root@oracbddrjs001 ~]#<\/pre>\n<p>The last steps are restarting your OMS agent and adding it to your OMS Service:<\/p>\n<p style=\"padding-left: 30px;\"><strong>Execute:<\/strong><br \/>\nemctl start agent<br \/>\nemctl config agent addinternaltargets<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[emc12@oracbddrjs001 ~]$ emctl start agent\r\nOracle Enterprise Manager Cloud Control 12c Release 3\r\nCopyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.\r\nStarting agent .......... started.\r\n[emc12@oracbddrjs001 ~]$ emctl config agent addinternaltargets\r\nOracle Enterprise Manager Cloud Control 12c Release 3\r\nCopyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.\r\n[emc12@oracbddrjs001 ~]$<\/pre>\n<p>If you go now to your EM 12c web console, you will see that the the client was added and is listed as one of the monitored hosts.<\/p>\n<p>Update: Oracle has a great article witch explains those steps, has complete list of prerequisites and can be accessed on:\u00a0<a href=\"http:\/\/docs.oracle.com\/cd\/E24628_01\/install.121\/e24089\/appdx_repoint_agent.htm\">http:\/\/docs.oracle.com\/cd\/E24628_01\/install.121\/e24089\/appdx_repoint_agent.htm<\/a>.<a href=\"http:\/\/www.oracle-base.com\/articles\/8i\/shell-commands-from-plsql.php\"><br \/>\n<\/a><\/p>\n<b>Have you enjoyed? Please leave a comment or give a \ud83d\udc4d!<\/b>\n<div class='watch-action'><div class='watch-position align-left'><div class='action-like'><a class='lbg-style2 like-752 jlk' href='javascript:void(0)' data-task='like' data-post_id='752' data-nonce='de4404f630' rel='nofollow'><img class='wti-pixel' src='https:\/\/www.dbarj.com.br\/wp-content\/plugins\/wti-like-post\/images\/pixel.gif' title='Like' \/><span class='lc-752 lc'>+7<\/span><\/a><\/div><\/div> <div class='status-752 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>Maybe one day you might face a situation where you\u00a0lose, change or reinstall your Oracle EM 12c Server and if you do so, you won&#8217;t need to reinstall all the OMS agents running on your client hosts. All you need is to create a new instance of the agent inside each of your client hosts &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/\">Continue reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-752","post","type-post","status-publish","format-standard","hentry","category-oem12c-en","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Howto repoint your Oracle Management Agent to a different OEM 12c Server - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"description\" content=\"Learn how to repoint your OMS Agent to another Oracle EM 12c Server.\" \/>\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.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DBA RJ\" \/>\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.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"Howto repoint your Oracle Management Agent to a different OEM 12c Server\",\"datePublished\":\"2014-05-08T19:17:45+00:00\",\"dateModified\":\"2014-10-10T02:49:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/\"},\"wordCount\":434,\"commentCount\":9,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"articleSection\":[\"Enterprise Manager 12c\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/\",\"name\":\"Howto repoint your Oracle Management Agent to a different OEM 12c Server - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\"},\"datePublished\":\"2014-05-08T19:17:45+00:00\",\"dateModified\":\"2014-10-10T02:49:37+00:00\",\"description\":\"Learn how to repoint your OMS Agent to another Oracle EM 12c Server.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/05\\\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Howto repoint your Oracle Management Agent to a different OEM 12c Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\",\"name\":\"DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"description\":\"Blog about Databases, Security and High Availability\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\",\"name\":\"DBA RJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"width\":712,\"height\":712,\"caption\":\"DBA RJ\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Howto repoint your Oracle Management Agent to a different OEM 12c Server - DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Learn how to repoint your OMS Agent to another Oracle EM 12c Server.","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.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/","twitter_misc":{"Written by":"DBA RJ","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/#article","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/"},"author":{"name":"DBA RJ","@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"Howto repoint your Oracle Management Agent to a different OEM 12c Server","datePublished":"2014-05-08T19:17:45+00:00","dateModified":"2014-10-10T02:49:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/"},"wordCount":434,"commentCount":9,"publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"articleSection":["Enterprise Manager 12c"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/","url":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/","name":"Howto repoint your Oracle Management Agent to a different OEM 12c Server - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/#website"},"datePublished":"2014-05-08T19:17:45+00:00","dateModified":"2014-10-10T02:49:37+00:00","description":"Learn how to repoint your OMS Agent to another Oracle EM 12c Server.","breadcrumb":{"@id":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbarj.com.br\/en\/2014\/05\/howto-repoint-oracle-em-12c-agent-different-oracle-em-12c-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dbarj.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Howto repoint your Oracle Management Agent to a different OEM 12c Server"}]},{"@type":"WebSite","@id":"https:\/\/www.dbarj.com.br\/en\/#website","url":"https:\/\/www.dbarj.com.br\/en\/","name":"DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Blog about Databases, Security and High Availability","publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbarj.com.br\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9","name":"DBA RJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","width":712,"height":712,"caption":"DBA RJ"},"logo":{"@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png"}}]}},"_links":{"self":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/752","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/comments?post=752"}],"version-history":[{"count":0,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/752\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/media?parent=752"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/categories?post=752"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/tags?post=752"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}