Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Uninstall HDP 2.3.2 from SuSE

avatar
New Contributor

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
New Contributor

Thanks. This worked for me.