如何卸载Hadoop 1.0.0
我使用 Hadoop 2.0.2 设置 Hadoop 集群。然后,今天我尝试测试1.0.0。所以我从 Hadoop 网站下载了 deb 文件并安装了它:它确实搞乱了一切。
现在,当我输入“which -a hadoop”时,我得到 2 个结果
- ,一个指向我的旧 Hadoop 安装文件夹
- ,另一个指向 /usr/bin/hadoop。
那么问题来了:如何彻底摆脱Hadoop 1.0.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用 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, trydpkg -P hadoop
instead.并且Hadoop被卸载了!
And Hadoop is uninstalled!
我在这个问题上挣扎了一段时间,然后决定在这里分享:
诀窍是基本上删除所有指向 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!