- Community Home
- >
- Software
- >
- HPE Ezmeral Software platform
- >
- Query: Ezmeral installation error
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 08:40 AM
10-21-2024 08:40 AM
Ezmeral installation error
While installing Ezmeral, after configuring, cluster and nodes, while verification it fails with the below error , but the host is reachable
getent ahosts vfn-spdr-lab1-ezm02
xx.xxx.xxx.xx STREAM vfn-spdr-lab1-ezm02
xx.xxx.xxx.xx DGRAM
xx.xxx.xxx.xx RAW
2024-10-21 14:48:59.045: IGNORED Task: Measure DNS resolution time(shell {
"_raw_params": "start=$(date +%s%N)\ngetent ahosts {{ item }}\nend=$(date +%s%N)\necho \"$((($end - $start)/1000000)) ms\"\n"
}) -> failed {
"changed": false
}
One or more items failed in Measure DNS resolution time(shell {
"_raw_params": "start=$(date +%s%N)\ngetent ahosts {{ item }}\nend=$(date +%s%N)\necho \"$((($end - $start)/1000000)) ms\"\n"
})
vfn-spdr-lab1-ezm03: ...ignoring errors
2024-10-21 14:48:59.092: Task: Check if resolution time exceeds 300ms(fail {
"msg": "DNS resolution for {{ item.item }} took more than 300ms ({{ item.stdout_lines[-1] }})"
}) -> failed => {
"_ansible_no_log": false
}
The conditional check 'item.stdout_lines[-1] | regex_replace(' ms', '') | int > 300' failed. The error was: error while evaluating conditional (item.stdout_lines[-1] | regex_replace(' ms', '') | int > 300): 'dict object' has no attribute 'stdout_lines'
The error appears to be in '/opt/mapr/installer/mapr_ansible/playbooks/check.yml': line 144, column 9, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: Check if resolution time exceeds 300ms
^ here
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 08:52 AM
10-21-2024 08:52 AM
Re: Ezmeral installation error
That appears to be a transient issue with your DNS server. If you retry the installation does it still fail with DNS resolution taking too long? I've seen this in my environment and usually retrying the install works. If not, you can try configuring your hosts with local entries in the /etc/hosts file and configuring your name service to resolve hosts using /etc/hosts instead of DNS, at least until the installation succeeds.
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 08:54 AM
10-21-2024 08:54 AM
Re: Ezmeral installation error
It's probably not the product issue. Mostly name resolution issue. Do you use proxy ? If yes , this could be proxy config issue. Here is what I will suggest to get rid of DNS issue.
- On all nodes trying manually adding IP/host of all the cluster nodes under /etc/hosts
- Validate if the proxy is configured correctly to be used by installer. Check below doc for proxy section.
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 09:20 AM - last edited on 10-21-2024 08:53 PM by Sunitha_Mod
10-21-2024 09:20 AM - last edited on 10-21-2024 08:53 PM by Sunitha_Mod
Re: Ezmeral installation error
yes tried adding the hosts in /etc/hosts file in all 3 nodes. still it is failing. But the below block is failing, but the command getent ahosts is getting executed successfully.
- name: Check DNS resolution time for each host in the cluster
block:
- name: Measure DNS resolution time
shell: |
start=$(date +%s%N)
getent ahosts {{ item }}
end=$(date +%s%N)
echo "$((($end - $start)/1000000)) ms"
register: dns_resolution_time
loop: "{{ groups['all'] }}"
ignore_errors: yes
- name: Check if resolution time exceeds 300ms
fail:
msg: "DNS resolution for {{ item.item }} took more than 300ms ({{ item.stdout_lines[-1] }})"
loop: "{{ dns_resolution_time.results }}"
when: item.stdout_lines[-1] | regex_replace(' ms', '') | int > 300
- name: Display DNS resolution times
debug:
msg: "DNS resolution time for {{ item.item }} was {{ item.stdout }}"
loop: "{{ dns_resolution_time.results }}"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 09:05 PM
10-21-2024 09:05 PM
Re: Ezmeral installation error
I will suggest you to validate your proxy settings and if possible on all nodes add below line in /etc/sudoers . Is there is any permission issue, it will take care.
mapr ALL=(ALL) NOPASSWD: ALL
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 10:22 PM
10-21-2024 10:22 PM
Re: Ezmeral installation error
Hi,
DNS error is resolved. Thank you. As we are doing installation in Development environment, the pre-requisite for /tmp (10GB) and /opt/mapr(128GB) is failing. Can we reduce the pre-requisite space for /tmp and /opt/mapr. If yes, can you let us know, where this has to be updated. Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 10:56 PM
10-21-2024 10:56 PM
Re: Ezmeral installation error
As per the prerequisites, provide at least 10 GB of free disk space on the operating system partition, 10 GB of free disk space in the /tmp directory and 128 GB of free disk space in the /opt directory. Services such as the ResourceManager and NodeManager use the /tmp directory. We cannot customize these prerequisite values.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 11:06 PM
10-21-2024 11:06 PM
Re: Ezmeral installation error
You can try setting java.io.tmpdir to a different directory with sufficient space and see if that resolves the issue. Refer to the document below for details:
Note: I recommend marking the comment that helped resolve the issue. This improves the algorithm's ability to suggest accurate solutions and makes it easier for others to find.
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2024 08:23 AM
10-22-2024 08:23 AM
Re: Ezmeral installation error
Thank you for the response. Is /opt/mapr also requires 128GB? as the installation is erroring out due this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2024 08:46 AM
10-22-2024 08:46 AM
Re: Ezmeral installation error
Detailed node requirements are here: https://docs.ezmeral.hpe.com/datafabric-customer-managed/78/AdvancedInstallation/PreparingEachNode.html
Detailed information specific to RAM and disk space are here: https://docs.ezmeral.hpe.com/datafabric-customer-managed/78/AdvancedInstallation/PreparingEachNode-memory.html
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2024 04:31 AM
10-28-2024 04:31 AM
Query: Ezmeral installation error
Hello,
Let us know if you were able to resolve the issue.
If you have no further query, and you are satisfied with the answer then kindly mark the topic as Solved so that it is helpful for all community members.
Please click on "Thumbs Up/Kudo" icon to give a "Kudo".
Thank you for being a HPE valuable community member.