<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Please HELP : 500 status code received on POST method for API: /api/v1/clusters/Analytics_Hadoop/request in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283412#M210650</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/70953"&gt;@asmarz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you delete components at times you leave the database in an inconsistent&amp;nbsp; status. you will need to log onto the Ambari Database to do some manual cleaning.&lt;/P&gt;&lt;P&gt;There are 3 important tables that hold the component status&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;hostcomponentstate&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;hostcomponentdesiredstate&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;servicecomponentdesiredstate&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;A&amp;nbsp; targeted select on the component name to show , run the below&amp;nbsp; to check if your oozie components are still&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@nakuru ~]# psql ambari ambari&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Password for user ambari: #default password is "bigdata"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;psql (8.4.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;"help" for help.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; select distinct component_name from &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;hostcomponentstate;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;If you see the oozie components in the databases then you will have to delete those entries, I have&amp;nbsp; used&amp;nbsp;&lt;STRONG&gt;'OOZIE_SERVER','OOZIE_CLIENT&lt;/STRONG&gt;' in the below example&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="oozie.PNG" style="width: 476px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25377i53D94D73FE16AA46/image-size/large?v=v2&amp;amp;px=999" role="button" title="oozie.PNG" alt="oozie.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Delete the orphaned&amp;nbsp; Oozie entries&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@nakuru ~]# psql ambari ambari&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Password for user ambari: #default password is "bigdata"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;psql (8.4.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;"help" for help.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentstate where component_name='OOZIE_CLIENT';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentstate where component_name='OOZIE_SERVER';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentdesiredstate where component_name='OOZIE_CLIENT';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentdesiredstate where component_name='OOZIE_SERVER';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from servicecomponentdesiredstate where component_name='OOZIE_CLIENT';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from servicecomponentdesiredstate where component_name='OOZIE_SERVER';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; commit;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;WARNING: there is no transaction in progress&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;COMMIT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; \q&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;[root@nakuru ~]#&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;You can then stop all the components in the&amp;nbsp; cluster and restart the database, you might need to restart some stale configurations&amp;nbsp; that might have been orphaned&amp;nbsp; due to the removal of the oozie components&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;HTH&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2019 20:11:21 GMT</pubDate>
    <dc:creator>Shelton</dc:creator>
    <dc:date>2019-11-19T20:11:21Z</dc:date>
    <item>
      <title>Please HELP : 500 status code received on POST method for API: /api/v1/clusters/Analytics_Hadoop/request</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283362#M210614</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get this error when restarting components :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="text-danger"&gt;500 status code&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;received on POST method for API: /api/v1/clusters/Analytics_Hadoop/requests&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I deleted oozie service&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am using postegres database&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you in advance&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 17:10:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283362#M210614</guid>
      <dc:creator>asmarz</dc:creator>
      <dc:date>2019-11-20T17:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Please HELP : 500 status code received on POST method for API: /api/v1/clusters/Analytics_Hadoop/request</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283412#M210650</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/70953"&gt;@asmarz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you delete components at times you leave the database in an inconsistent&amp;nbsp; status. you will need to log onto the Ambari Database to do some manual cleaning.&lt;/P&gt;&lt;P&gt;There are 3 important tables that hold the component status&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;hostcomponentstate&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;hostcomponentdesiredstate&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;servicecomponentdesiredstate&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;A&amp;nbsp; targeted select on the component name to show , run the below&amp;nbsp; to check if your oozie components are still&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@nakuru ~]# psql ambari ambari&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Password for user ambari: #default password is "bigdata"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;psql (8.4.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;"help" for help.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; select distinct component_name from &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;hostcomponentstate;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;If you see the oozie components in the databases then you will have to delete those entries, I have&amp;nbsp; used&amp;nbsp;&lt;STRONG&gt;'OOZIE_SERVER','OOZIE_CLIENT&lt;/STRONG&gt;' in the below example&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="oozie.PNG" style="width: 476px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25377i53D94D73FE16AA46/image-size/large?v=v2&amp;amp;px=999" role="button" title="oozie.PNG" alt="oozie.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Delete the orphaned&amp;nbsp; Oozie entries&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;[root@nakuru ~]# psql ambari ambari&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Password for user ambari: #default password is "bigdata"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;psql (8.4.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;"help" for help.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentstate where component_name='OOZIE_CLIENT';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentstate where component_name='OOZIE_SERVER';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentdesiredstate where component_name='OOZIE_CLIENT';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from hostcomponentdesiredstate where component_name='OOZIE_SERVER';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from servicecomponentdesiredstate where component_name='OOZIE_CLIENT';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; delete from servicecomponentdesiredstate where component_name='OOZIE_SERVER';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;DELETE 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; commit;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;WARNING: there is no transaction in progress&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;COMMIT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;ambari=&amp;gt; \q&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;[root@nakuru ~]#&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;You can then stop all the components in the&amp;nbsp; cluster and restart the database, you might need to restart some stale configurations&amp;nbsp; that might have been orphaned&amp;nbsp; due to the removal of the oozie components&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;HTH&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 20:11:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283412#M210650</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-11-19T20:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Please HELP : 500 status code received on POST method for API: /api/v1/clusters/Analytics_Hadoop/request</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283481#M210698</link>
      <description>&lt;P&gt;Thank you for your reply&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to reinstall the oozie client and server ( I have one server and 4 clients machines)&lt;/P&gt;&lt;P&gt;It has been installed on the server and one of client but failed for the 3 other with :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/var/lib/ambari-agent/cache/stack-hooks/after-INSTALL/scripts/hook.py", line 39, in &amp;lt;module&amp;gt;&lt;BR /&gt;AfterInstallHook().execute()&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/libraries/script/script.py", line 352, in execute&lt;BR /&gt;method(env)&lt;BR /&gt;File "/var/lib/ambari-agent/cache/stack-hooks/after-INSTALL/scripts/hook.py", line 32, in hook&lt;BR /&gt;setup_stack_symlinks(self.stroutfile)&lt;BR /&gt;File "/var/lib/ambari-agent/cache/stack-hooks/after-INSTALL/scripts/shared_initialization.py", line 66, in setup_stack_symlinks&lt;BR /&gt;stack_select.select(package, json_version)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/libraries/functions/stack_select.py", line 312, in select&lt;BR /&gt;Execute(command, sudo=True)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/base.py", line 166, in __init__&lt;BR /&gt;self.env.run()&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/environment.py", line 160, in run&lt;BR /&gt;self.run_action(resource, action)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/environment.py", line 124, in run_action&lt;BR /&gt;provider_action()&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/providers/system.py", line 263, in action_run&lt;BR /&gt;returns=self.resource.returns)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/shell.py", line 72, in inner&lt;BR /&gt;result = function(command, **kwargs)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/shell.py", line 102, in checked_call&lt;BR /&gt;tries=tries, try_sleep=try_sleep, timeout_kill_strategy=timeout_kill_strategy, returns=returns)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/shell.py", line 150, in _call_wrapper&lt;BR /&gt;result = _call(command, **kwargs_copy)&lt;BR /&gt;File "/usr/lib/ambari-agent/lib/resource_management/core/shell.py", line 314, in _call&lt;BR /&gt;raise ExecutionFailed(err_msg, code, out, err)&lt;BR /&gt;resource_management.core.exceptions.ExecutionFailed: Execution of 'ambari-python-wrap /usr/bin/hdp-select set oozie-client 3.1.4.0-315' returned 1. symlink target /usr/hdp/current/oozie-client for oozie already exists and it is not a symlink.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 14:11:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283481#M210698</guid>
      <dc:creator>asmarz</dc:creator>
      <dc:date>2019-11-20T14:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Please HELP : 500 status code received on POST method for API: /api/v1/clusters/Analytics_Hadoop/request</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283502#M210714</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/70953"&gt;@asmarz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error is below in bold I&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;/usr/bin/hdp-select set oozie-client 3.1.4.0-315' returned 1. symlink target /usr/hdp/current/oozie-client for oozie already exists and it is not a symlink.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Possible cause the symlink is broken or exists and is pointing to different location or version&amp;nbsp; so removing symlink and reinstalling the client should resolve the issue&lt;/P&gt;&lt;P&gt;Validate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you validate that the link exists?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="001.PNG" style="width: 837px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/25390i6A222A42FFC98EAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="001.PNG" alt="001.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Move the symlink&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;mv /usr/hdp/current/oozie-client /usr/hdp/current/oozie-client_back&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Recreate the symlink&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;ln -s&amp;nbsp; /usr/hdp/&lt;FONT color="#000000"&gt;3.1.0.0-78&lt;/FONT&gt;/oozie /usr/hdp/current/oozie-client&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My version above is 2.1.0.0.x this should match your exact version&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:42:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Please-HELP-500-status-code-received-on-POST-method-for-API/m-p/283502#M210714</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-11-20T19:42:24Z</dc:date>
    </item>
  </channel>
</rss>

