Member since
02-11-2015
2
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
10790 | 02-12-2015 11:05 AM |
02-12-2015
11:05 AM
1 Kudo
CLOSE FOR ME I have solved this install error. CentOS 6.6 must in english langue, so I changed in all system the LANG="fr_FR.UTF-8" to LANG="en_US.UTF-8" in the file /etc/sysconfig/i18n. Also, the system need to be clean then : /usr/share/cmf/uninstall-cloudera-manager.sh And create a file cleanSlave.sh #!/bin/bash rm -vRf /etc/yum.repos.d/cloudera* /etc/cloudera-* rm -vRf /usr/share/cmf /var/lib/cloudera* /var/cache/yum/cloudera* rm -vRf /var/log/cloudera-* yum remove cloudera* yum clean all You can run it on the master and after if you have a lot of machine do something like that : #!/bin/bash for n in 1 2 3 4 5 do echo slave$n ssh root@slave$n 'bash -s' < cleanSlave.sh done
... View more
02-11-2015
11:15 PM
I have the same trouble with Centos-6.6 and cloude manager manager 5.3.1. The cloudera-manager-agent does not show that cloudera-manager-agent is installed. I try a instllation with : Centos-6.6 - cloude manager manager 5.3.1 - target CDH5.3.1 Centos-6.6 - cloude manager manager 5.3.1 - target CDH5.3.0 Centos-6.6 - cloude manager manager 5.2.0 - target CDH5.2.2 I try to install yum install cloudera-manager-agent, but in cloudera-manager, I retry the installation and failed again during cloudera-manager-agent installation phase. I do not find any error more explicit, only : Version : 5.3.1 cloudera-manager-agent must have Version=5.3.1 and Build=159, exiting closing logging file descriptor
... View more