Created on 10-21-2013 09:45 AM - edited 09-16-2022 01:49 AM
There should have been some problem at the end of the installation and it seems there is no way to solve it except reinstalling the linux.
It was installed over Centos 6.4 (64 bits).
Thanks in advance.
jalonso.n@gmail.com
Created 10-23-2013 01:23 AM
Hello Jalonso,
Following are steps that we usually use to uninstall. This may be little different for you depending on the ecosystem that you are using.
- Stop all services. You can do that manually or use the following:
$ for s in `cd /etc/init.d ; ls hadoop-*` ; do sudo service $s stop ; done
- If you choose to stop services manually then follow following order Hue, Sqoop, Flume, Oozie, Hive, HBase, MapRed, Yarn, HttpFS, HDFS and lastly Zookeeper.
- Then you can use following command to remove your environment specific components:
sudo yum remove hue
sudo yum remove pig
sudo yum remove sqoop
sudo yum remove flume
sudo apt-get purge hive hive-metastore hive-server hive-server2
sudo apt-get purge hadoop-hbase
sudo apt-get purge hadoop-zookeeper-server
sudo apt-get purge hadoop-zookeeper
sudo apt-get purge hadoop-hdfs-zkfc
apt-get purge hadoop-hdfs-hadoop-hdfs-journalnode
sudo apt-get purge hadoop-httpfs
sudo apt-get purge hadoop-0.20
- Post above steps you will have to clean up log files, config files, hue databases manually.
Hope that helps.
Created 10-23-2013 01:23 AM
Hello Jalonso,
Following are steps that we usually use to uninstall. This may be little different for you depending on the ecosystem that you are using.
- Stop all services. You can do that manually or use the following:
$ for s in `cd /etc/init.d ; ls hadoop-*` ; do sudo service $s stop ; done
- If you choose to stop services manually then follow following order Hue, Sqoop, Flume, Oozie, Hive, HBase, MapRed, Yarn, HttpFS, HDFS and lastly Zookeeper.
- Then you can use following command to remove your environment specific components:
sudo yum remove hue
sudo yum remove pig
sudo yum remove sqoop
sudo yum remove flume
sudo apt-get purge hive hive-metastore hive-server hive-server2
sudo apt-get purge hadoop-hbase
sudo apt-get purge hadoop-zookeeper-server
sudo apt-get purge hadoop-zookeeper
sudo apt-get purge hadoop-hdfs-zkfc
apt-get purge hadoop-hdfs-hadoop-hdfs-journalnode
sudo apt-get purge hadoop-httpfs
sudo apt-get purge hadoop-0.20
- Post above steps you will have to clean up log files, config files, hue databases manually.
Hope that helps.
Created 10-29-2013 01:50 AM
That's enough.
Thanks a lot.