Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Uninstall HDP 2.3.2 from SuSE

avatar

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.

1 ACCEPTED SOLUTION

avatar
Master Mentor

@Divya S

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...

View solution in original post

2 REPLIES 2

avatar
Master Mentor

@Divya S

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...

avatar

Thanks. This worked for me.