如何卸载Hadoop 1.0.0

发布于 2025-01-04 20:31:38 字数 247 浏览 1 评论 0 原文

我使用 Hadoop 2.0.2 设置 Hadoop 集群。然后,今天我尝试测试1.0.0。所以我从 Hadoop 网站下载了 deb 文件并安装了它:它确实搞乱了一切。

现在,当我输入“which -a hadoop”时,我得到 2 个结果

  • ,一个指向我的旧 Hadoop 安装文件夹
  • ,另一个指向 /usr/bin/hadoop。

那么问题来了:如何彻底摆脱Hadoop 1.0.0?

I set up my Hadoop clusters with Hadoop 2.0.2. Then, today I tried to test 1.0.0. So I downloaded the deb file from the Hadoop website and installed it: It did mess up everything.

Now, when I type "which -a hadoop" I get 2 results

  • one pointing to my old Hadoop installation folder
  • and the other one pointing to /usr/bin/hadoop.

So the question is: how to get rid off of Hadoop 1.0.0 completely?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

卸妝后依然美 2025-01-11 20:31:38

尝试使用 dpkg -r hadoop ;这应该会从系统中删除 Hadoop 软件包,但保留配置文件不变。如果您也想丢失配置文件,请尝试使用dpkg -P hadoop

Try using dpkg -r hadoop; this should remove the Hadoop package from the system, but leave the config files intact. If you want to lose the config files as well, try dpkg -P hadoop instead.

爱要勇敢去追 2025-01-11 20:31:38
> $HADOOP_HOME
> /home/shiv/hadoop
> sudo rm -r /home/shiv/hadoop

并且Hadoop被卸载了!

> $HADOOP_HOME
> /home/shiv/hadoop
> sudo rm -r /home/shiv/hadoop

And Hadoop is uninstalled!

站稳脚跟 2025-01-11 20:31:38

我在这个问题上挣扎了一段时间,然后决定在这里分享:

诀窍是基本上删除所有指向 HDP 组件所在位置的符号链接,因为这是导致 80% 问题的原因。这是分步教程:

http://www.yourtechchick.com/hadoop/how-to-completely-remove-and-uninstall-hdp-components-hadoop-uninstall-on-linux-system/

希望有帮助!

I struggled through this for longer than a while and then decided to share it here:

The trick is to basically delete all the symlinks pointing back to locations where HDP components reside since that is what causes 80% of the problem. Here is a step by step tutorial for that:

http://www.yourtechchick.com/hadoop/how-to-completely-remove-and-uninstall-hdp-components-hadoop-uninstall-on-linux-system/

Hope that helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文