<?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 how to remove old registered hosts from DB in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217521#M72344</link>
    <description>&lt;P&gt;I am trying to remove old worker from the DB ( from ambari-server machine ) as the following&lt;/P&gt;&lt;P&gt;*  reference - &lt;A href="https://community.hortonworks.com/questions/52910/how-can-i-remove-registered-host-but-do-not-added.html" target="_blank"&gt;https://community.hortonworks.com/questions/52910/how-can-i-remove-registered-host-but-do-not-added.html&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;psql -U ambari ambari

Password for user ambari:&lt;/PRE&gt;&lt;PRE&gt;ambari-&amp;gt; select host_id from hosts where host_name='worker05.sys59.com';

host_id 

---------

255 

(1 row)&lt;/PRE&gt;&lt;P&gt;so I delete the host:&lt;/P&gt;&lt;PRE&gt;ambari=&amp;gt; Delete from hoststate where host_id=255
ambari-&amp;gt; Delete from hosts where host_id=255
&lt;/PRE&gt;&lt;PRE&gt;ambari=&amp;gt; select host_id from hosts where host_name='worker05.sys59.com';
host_id ---------
255 (1 row)
&lt;/PRE&gt;&lt;P&gt;this worker still exists in DB , ( host_id=255 ) , even I restart the ambari-server !!&lt;/P&gt;&lt;P&gt; 
why?&lt;/P&gt;&lt;P&gt;
and how to total remove this worker include all worker properties  from postgreSQL ? &lt;/P&gt;</description>
    <pubDate>Tue, 05 Dec 2017 23:12:44 GMT</pubDate>
    <dc:creator>mike_bronson7</dc:creator>
    <dc:date>2017-12-05T23:12:44Z</dc:date>
    <item>
      <title>how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217521#M72344</link>
      <description>&lt;P&gt;I am trying to remove old worker from the DB ( from ambari-server machine ) as the following&lt;/P&gt;&lt;P&gt;*  reference - &lt;A href="https://community.hortonworks.com/questions/52910/how-can-i-remove-registered-host-but-do-not-added.html" target="_blank"&gt;https://community.hortonworks.com/questions/52910/how-can-i-remove-registered-host-but-do-not-added.html&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;psql -U ambari ambari

Password for user ambari:&lt;/PRE&gt;&lt;PRE&gt;ambari-&amp;gt; select host_id from hosts where host_name='worker05.sys59.com';

host_id 

---------

255 

(1 row)&lt;/PRE&gt;&lt;P&gt;so I delete the host:&lt;/P&gt;&lt;PRE&gt;ambari=&amp;gt; Delete from hoststate where host_id=255
ambari-&amp;gt; Delete from hosts where host_id=255
&lt;/PRE&gt;&lt;PRE&gt;ambari=&amp;gt; select host_id from hosts where host_name='worker05.sys59.com';
host_id ---------
255 (1 row)
&lt;/PRE&gt;&lt;P&gt;this worker still exists in DB , ( host_id=255 ) , even I restart the ambari-server !!&lt;/P&gt;&lt;P&gt; 
why?&lt;/P&gt;&lt;P&gt;
and how to total remove this worker include all worker properties  from postgreSQL ? &lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 23:12:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217521#M72344</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-05T23:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217522#M72345</link>
      <description>&lt;P&gt; &lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Add a semicolon at the end of the statement&lt;/P&gt;&lt;PRE&gt;ambari=&amp;gt; Delete from hoststate where host_id=255;
ambari=&amp;gt; Delete from hosts where host_id=255;&lt;/PRE&gt;&lt;P&gt;Note: Do the above with caution. Before removing the node from cluster it is advised to move all the services to other nodes and make sure that the node is clean before deleting the node.&lt;/P&gt;&lt;P&gt;Below is the API to delete the node&lt;/P&gt;&lt;PRE&gt;curl -u {ambari-user}:{ambari-password} -H "X-Requested-By: ambari"-X DELETE  &lt;A href="http://{ambari-host}:{ambari-port}/api/v1/clusters/{clustername}/hosts/{hostname}" target="_blank"&gt;http://{ambari-host}:{ambari-port}/api/v1/clusters/{clustername}/hosts/{hostname}&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 23:35:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217522#M72345</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-05T23:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217523#M72346</link>
      <description>&lt;PRE&gt;I am usually remove it by the amabri GUI ( dlete node ) , but I guess the API do the same ? &lt;/PRE&gt;</description>
      <pubDate>Tue, 05 Dec 2017 23:46:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217523#M72346</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-05T23:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217524#M72347</link>
      <description>&lt;P&gt; &lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Yes. Ambari calls the same API internally. If you want to run it from command line instead of Ambari GUI , you can use the API.&lt;/P&gt;&lt;P&gt;That should take care of clearing the entries from DB. You need not delete the entries from DB manually&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2017 23:48:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217524#M72347</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-05T23:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217525#M72348</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="42923-capture.png" style="width: 767px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/16141i71831D47ECFDFD29/image-size/medium?v=v2&amp;amp;px=400" role="button" title="42923-capture.png" alt="42923-capture.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;now after we delete the worler06 now we want to add it to the cluster but we get from the ambari GUI:&lt;/P&gt;&lt;P&gt;we waiting more then 20min - is it logical ?&lt;/P&gt;&lt;PRE&gt;Please wait while the hosts are being checked for potential problems...         

&lt;/PRE&gt;&lt;P&gt;&lt;A href="http://10.164.28.152:8080/#" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 02:57:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217525#M72348</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2019-08-18T02:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217526#M72349</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;It shouldn't take so long. Please check the ambari log to see what is going wrong.&lt;/P&gt;&lt;P&gt;Check this file /var/log/ambari-server/ambari-server.log in ambari server node&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 00:08:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217526#M72349</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-06T00:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217527#M72350</link>
      <description>&lt;P&gt;the deleted host - worker 06 only deleted and we not removed the worker component , so now when we add this worker again mayby this is the conflict because worker is already installed ?| &lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 00:15:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217527#M72350</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-06T00:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217528#M72351</link>
      <description>&lt;P&gt;from the ambari-server log we see that&lt;/P&gt;&lt;PRE&gt; configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:37,189  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:37,189  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:38,222  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:38,222  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:38,222  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:39,247  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:39,247  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:39,247  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:40,272  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:40,273  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
05 Dec 2017 16:33:40,273  WARN [ambari-action-scheduler] ExecutionCommandWrapper:185 - Unable to lookup the cluster by ID; assuming that there is no cluster and therefore no configs for this execution command: Cluster not found, clusterName=clusterID=-1
^C&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 00:34:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217528#M72351</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-06T00:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217529#M72352</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;If the host deletion was not proper then there can be conflicts. The ambari log below doesn't show any errors. Try restarting ambari server and see if you can proceed further.&lt;/P&gt;&lt;PRE&gt;ambari-server restart&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 00:40:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217529#M72352</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-06T00:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217530#M72353</link>
      <description>&lt;P&gt;another issue I have about :&lt;/P&gt;&lt;PRE&gt;ambari=&amp;gt; Delete from hosts where host_id=351;
ERROR:  update or delete on table "hosts" violates foreign key constraint "fk_host_role_command_host_id" on table "host_role_command"
DETAIL:  Key (host_id)=(351) is still referenced from table "host_role_command".&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 00:54:30 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217530#M72353</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-06T00:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217531#M72354</link>
      <description>&lt;P&gt;I strongly suggest not to delete/edit entries directly in database. However if you still want to do it at your own risk&lt;/P&gt;&lt;PRE&gt;delete from host_role_command where host_id=351;
Delete from hosts where host_id=351;
&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 01:04:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217531#M72354</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-06T01:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217532#M72355</link>
      <description>&lt;P&gt;we still get the same errors about &lt;/P&gt;&lt;PRE&gt;ambari=&amp;gt; delete from host_role_command where host_id=351;
ERROR:  update or delete on table "host_role_command" violates foreign key constraint "fk_execution_command_task_id" on table "execution_command"
DETAIL:  Key (task_id)=(5156) is still referenced from table "execution_command".
ambari=&amp;gt; Delete from hosts where host_id=351;
ERROR:  update or delete on table "hosts" violates foreign key constraint "fk_host_role_command_host_id" on table "host_role_command"
DETAIL:  Key (host_id)=(351) is still referenced from table "host_role_command".&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Dec 2017 01:07:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217532#M72355</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-06T01:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217533#M72356</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;You have to delete all the rows which have FK constraint in different tables. Then you will be able to delete the host entry&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 02:13:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217533#M72356</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-06T02:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217534#M72357</link>
      <description>&lt;P&gt;can you share with me please how to rows which have FK constraint in different tables&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 02:18:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217534#M72357</guid>
      <dc:creator>mike_bronson7</dc:creator>
      <dc:date>2017-12-06T02:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217535#M72358</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;I'm sorry. I do not have a setup where I can try this currently. But you can see the error message and delete the rows of a table on which it complains the FK constraint&lt;/P&gt;&lt;P&gt;for ex: ERROR:  update or delete on table "host_role_command" violates foreign key constraint "fk_execution_command_task_id" on table "execution_command"
DETAIL:  Key (task_id)=(5156) is still referenced from table "execution_command".&lt;/P&gt;&lt;P&gt;For this error you can run&lt;/P&gt;&lt;P&gt;delete from execution_command where task_id=5156;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 02:24:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217535#M72358</guid>
      <dc:creator>asirna</dc:creator>
      <dc:date>2017-12-06T02:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to remove old registered hosts from DB</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217536#M72359</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/26229/uribarih.html" nodeid="26229"&gt;@Michael Bronson&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can try the following approach to completely remove the unwanted host from your ambari Database.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;0. Stop ambari-server.&lt;/P&gt;&lt;PRE&gt;# ambari-server stop&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;1. Please take a fresh ambari DB dump for safety and backup.&lt;BR /&gt;&lt;BR /&gt;2. Now run the following SQL queries inside your ambari DB to delete the unwanted host. Please replace the "unwanted1.host.com" with your unwanted hostname and similarly the "351" with the "host_id" that you want to remove from your Database.&lt;/P&gt;&lt;PRE&gt;delete from execution_command where task_id in (select task_id from host_role_command where host_id in (351));
delete from host_version where host_id in (351);
delete from host_role_command where host_id in (351);
delete from serviceconfighosts where host_id in (351);
delete from hoststate where host_id in (351);
delete from kerberos_principal_host WHERE host_id='unwanted1.host.com';  ----&amp;gt; For kerberized Env
delete from hosts where host_name in ('unwanted1.host.com');
delete from alert_current where history_id in ( select alert_id from alert_history where host_name in ('unwanted1.host.com'));&lt;/PRE&gt;&lt;P&gt;3. Now restart ambari-server.&lt;/P&gt;&lt;PRE&gt;# ambari-server start&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 04:21:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/how-to-remove-old-registered-hosts-from-DB/m-p/217536#M72359</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-12-06T04:21:22Z</dc:date>
    </item>
  </channel>
</rss>

