Created 09-22-2020 07:16 AM
Hello.
I have activity monitor in green state.
In logs I have smth like this:
ps Sorry for quality, have no internet access in my cluster.
But when I open navigator web ui I see this:
Created 09-24-2020 01:22 AM
@Yuriy_but You are likely hitting some known issue.
If this is greater than CM 5.15.1 then please follow this step and see.
$ cd /usr/share/cmf/cloudera-navigator-server/jars
$ ls c3p0*The list may include two jar files:
c3p0-0.9.1.2.jar c3p0-0.9.5.2.jar
$ rm c3p0-0.9.5.2.jar
$ cd /usr/share/cmf/cloudera-navigator-server/wars/
$ zip -d nav-core-webapp-2.14.1.war WEB-INF/lib/c3p0-0.9.5.2.jar
If this is air-gapped environment (No internet access) then you might need these:
1. Identify IP address of the NMS. (can be gathered in Cloudera Management services->instances->Navigator Metadata Server)
2. Add the following line to the bottom of /etc/hosts on the NMS
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
<NMS_IP_ADDRESS> java.sun.com
3. On NMS, install httpd, depending on your Linux distribution. As this host does not have internet access, you will need to manually import and install rpms.
https://httpd.apache.org/docs/2.4/platform/rpm.html
4. Make a directory for java dtd file, and adjust permissions.
mkdir /var/www/html/dtd; chown 755 /var/www/html/dtd
5. Acquire Java DTD file from the following URL.
http://java.sun.com/dtd/web-app_2_3.dtd
6. Copy the file to /var/www/html/dtd directory on the NMS. Ensure the file is readable by "other".
7. Enable httpd server
sudo systemctl enable httpd; sudo systemctl start httpd
8. Start NMS.
NOTE: httpd must run for each NMS restart, this is not a one-off workaround. Systemctl command should ensure that this is the case. If the above workaround is not possible, a patch is also available from Cloudera Support until this is resolved in an upcoming release of Cloudera Manager.
Created 09-24-2020 01:22 AM
@Yuriy_but You are likely hitting some known issue.
If this is greater than CM 5.15.1 then please follow this step and see.
$ cd /usr/share/cmf/cloudera-navigator-server/jars
$ ls c3p0*The list may include two jar files:
c3p0-0.9.1.2.jar c3p0-0.9.5.2.jar
$ rm c3p0-0.9.5.2.jar
$ cd /usr/share/cmf/cloudera-navigator-server/wars/
$ zip -d nav-core-webapp-2.14.1.war WEB-INF/lib/c3p0-0.9.5.2.jar
If this is air-gapped environment (No internet access) then you might need these:
1. Identify IP address of the NMS. (can be gathered in Cloudera Management services->instances->Navigator Metadata Server)
2. Add the following line to the bottom of /etc/hosts on the NMS
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
<NMS_IP_ADDRESS> java.sun.com
3. On NMS, install httpd, depending on your Linux distribution. As this host does not have internet access, you will need to manually import and install rpms.
https://httpd.apache.org/docs/2.4/platform/rpm.html
4. Make a directory for java dtd file, and adjust permissions.
mkdir /var/www/html/dtd; chown 755 /var/www/html/dtd
5. Acquire Java DTD file from the following URL.
http://java.sun.com/dtd/web-app_2_3.dtd
6. Copy the file to /var/www/html/dtd directory on the NMS. Ensure the file is readable by "other".
7. Enable httpd server
sudo systemctl enable httpd; sudo systemctl start httpd
8. Start NMS.
NOTE: httpd must run for each NMS restart, this is not a one-off workaround. Systemctl command should ensure that this is the case. If the above workaround is not possible, a patch is also available from Cloudera Support until this is resolved in an upcoming release of Cloudera Manager.