Created on 12-16-2015 02:56 AM - edited 09-16-2022 02:53 AM
Found this link on how to unsinstall HDP. http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-...
However for step 16 and 17 (uninstall hadoop and mysql), there are no alternatives for SuSE.
I tried like zypper remove hadoop\* (just like others), but that didn't work.
zypper remove hadoop\*
Loading repository data...
Reading installed packages...
No package matching 'hadoop*' are installed.
Can someone please suggest how to uninstall on SuSE.
Created 12-16-2015 03:02 AM
rpm -qa | grep -i hadoop
then you can run zypper remove package
Also, when you install ambari, you will get warnings and will give you script to cleanup the existing install
example: python /usr/lib/python2.6/site-packages/ambari_agent/HostCleanup.py
This is for CentOS https://community.hortonworks.com/content/idea/138...
Created 12-16-2015 03:02 AM
rpm -qa | grep -i hadoop
then you can run zypper remove package
Also, when you install ambari, you will get warnings and will give you script to cleanup the existing install
example: python /usr/lib/python2.6/site-packages/ambari_agent/HostCleanup.py
This is for CentOS https://community.hortonworks.com/content/idea/138...
Created 12-16-2015 06:32 AM
Thanks. This worked for me.