Have questions about how the Nutanix Platform works? Looking to get started - start here!
Recently active
Can any one list out how many types of Foundation are there eg Foundation Pro, bare metal ..etc.
What are the 3rd party snapshots? Third-Party snapshots are generated by a third-party backup tool over API calls to our storage. The Nutanix system does not manage this type of snapshots and will keep the snapshots until it receives a deletion instruction from the third-party tool. The NCC health check aged_third_party_backup_snapshot_check checks the cluster for dangling third-party backup snapshots that may be present for a protection domain. If a third-party backup snapshot has existed in the system for longer than the specified period, this check will raise an alert. These backup snapshots are snapshots that are generated from 3rd party backups (Veeam, Commvault, Rubrik, HYCU, etc.). The check passes if third-party backup snapshots are not present in the cluster longer than the configured threshold. The default threshold is 7 days, but this threshold value can be modified. The threshold can range from 1 day to 365 days. For more information, examples and solution check out K
Hi Folks, I have a few machines I would like to convert from IDE to SCSI. I understand this can be done with acli. The procedure is to clone the ide disk and replace it for the VM. nutanix@cvm$ acli vm.disk_create <vm_name> clone_from_vmdisk=<vmdisk_UUID> bus=scsi However, I’d like to do this in PowerShell given I’ve already started developing down that track. I have PowerShell cmdlets to snapshot and shutdown the VM which are recommended steps before performing this task. I didn’t see a cmdlet to perform the clone and replacement, so I turned to the REST API. I am fairly new to Nutanix to I wanted to get some feedback on whether this is the right approach or at least that its not going to break anything other than my test VM. $uri = "https://$ntxCluster/api/nutanix/v2.0/vms/$($vm.vmid)/disks/attach"$body = '{"uuid":"abcdefg-08h3-4i44-95j0-kl44m82no758","vm_disks":[{"vm_disk_clone":{"disk_address":{"device_bus":"SCSI","device_index":123}}}]}'$headers=@{}$headers.A
Hello, removal of the disk on a node has started automatically, and more than a day has passed and the percentage is stopped at 97%, what can I do ??
Below are new knowledge base articles published on the week of May 3-9, 2020. KB 9220 - Changing ownership of applications, blueprints and users to other projects in CALM not supported. KB 9326 - "Open in Prism" button on the Insights Portal is deactivated KB 9340 - [Objects][MSP] Troubleshooting Deployment Failures due to docker pull issues KB 9341 - Calm: Cloning ESXi Template fails with "The resource 'xxx' is in use. com.vmware.vim.vpxd.dvs.portinuse.label" KB 9342 - Genesis crash-looping due to missing entries in iso_whitelist.json file Note: You may need to log in to the Support Portal to view some of these articles.
Here is my Code Snip [System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}$body = "{`"kind`":`"vm`", `"filter`":`"vm_name==.*VMName*`"}"$username = "Admin";$password = ConvertTo-SecureString –String "AdminPassword" –AsPlainText -Force$credential = New-Object –TypeName "System.Management.Automation.PSCredential" –ArgumentList $username, $password$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $username,$password)))$response = Invoke-RestMethod 'https://PRISMIP:9440/api/nutanix/v3/vms/list' -Method 'POST' -Headers @{Authorization=("Basic {0}" -f $base64AuthInfo)} -Body $body -Credential $credential$response | ConvertTo-Json And my Response is Invoke-RestMethod : {"state": "ERROR", "code": 401, "message_list": [{"reason": "AUTHENTICATION_REQUIRED", "message": "Authentication required.", "details": "Basic realm=\"Intent Gateway Login Required\""}], "api_version": "3.1"}At C:\Scripts\Untitled1.ps1:9 char:13+ $response = In
I am struggling to get my VM to unmount the ISO via the PC v3 API. I’m performing a GET, to get the VM Info, I’ve attempted to update the vm with data_source_reference removed, PC updates, but the iso is still attached. I see different references with V1 on PE, but can’t seem to do it via v3. anyone had any luck?
Hi all I have a 3 nodes cluster with RF2. I keep getting the following critical alert: Cluster can not tolerate 1 node failure(s) and guarantee available rebuild capacity Cluster cannot tolerate 1 node failure. Current usage of 6552243087527 bytes exceeds max limit of 9010877278002 bytes. I’m not sure which storage this error is about, the numbers in the error is way to big to what the cluster actually has. I’ve attached screenshot of the storage of the cluster. Any help will be much appreciated.
I have exported list of all snapshots running on AHV in our environment. On a few snapshots, VM name is empty. I suspect, this is because VM has been deleted without deleting snapshot. Now how to delete such snapshots? Below is example: Snapshot name is “removing ngt” VM-Name Snapshot-Name Creation-Time servername Test Snapshot 3/19/2019 11:00 removing ngt 2/6/2020 1:00
Find the best way to change all of the administrators password on Nutanix. This what I have done: #Changing the admin acct of PE ncli user reset-password user-name=admin password='$NewPassWD$@pe' #Changing the root acct of AHV for i in `hostips`;do echo "--$i--";ssh root@$i 'echo -e "$NewPassWD$@ahv" | passwd --stdin root';done #Changing the nutanix acct of CVM echo "$NewPassWD$@cvm" | sudo passwd --stdin nutanix #Change the ADMIN acct of the IPMI for i in `hostips`; do ssh root@$i 'for id in `/ipmitool user list |grep 'ADMIN '|cut -d" " -f1`; do echo $id; /ipmitool user set password $id "ADMINXXXXXXX"; done' ; done ncc health_checks system_checks default_password_check https://portal.nutanix.com/kb/6153
I share my software to collect information associated with a Nutanix cluster with AHV hypervisor. Link to download NIACtool v2.1
In the Nutanix Cluster upgrade there are five options Upgrade Software AOS File Server Hypervisor NCC Foundation so what is the correct sequence to upgrade whole stack of nutanix software?
Hi, I am trying to attach a vdisk to a VM. So far I have found that the only way to create and attach a new vdisk to VM is via this API POST /vms/{uuid}/disks/attach I am trying using this curl expression: curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{ "uuid": "IDEMPOTENT_UUID", "vm_disks": [ { "is_cdrom": false, "is_empty": false, "is_scsi_pass_through": false, "is_thin_provisioned": false, "vm_disk_create": { "size": 1, "storage_container_uuid": "CONTAINER_UUID" } } ]}' 'https://10.10.10.10:9440/api/nutanix/v2.0/vms/VM_UUID/disks/attach' \--insecure --basic --user obfuscated_username:obfuscated_password The task fails and error is: “InvalidArgument: Invalid disk size 0”. What am I missing here? Thanks for your time, Ivars
Below are new knowledge base articles published on the week of April 26-May 2, 2020. KB 8482 - Prism shows a spinning icon preventing AHV upgrades on mixed (ESXi+AHV) clusters KB 8874 - Nutanix Files - Alert - A160053 - File Server Share Backup diff path translation failed KB 9111 - LCM update is disabled since there is an emergency update available KB 9215 - NCC Health Check: dimm_hppr_check KB 9240 - ESXi Host may not enumerate all NICs due to outdated drivers KB 9289 - Licensing Conversion - LOD (Life of Device) to CBL (Capacity Based) License KB 9298 - Using tcpdump tool on AHV host KB 9301 - Windows: How to Reset Local Administrator Password KB 9310 - How to Disable the Windows 10 First Sign-in Animation KB 9323 - Upgrade or imaging of Windows 2019 might fail due to vmms registration problems Note: You may need to log in to the Support Portal to view some of these articles.
I have read that it is only supported using ESXI. If so, what are the other ways to automate the failover.
This article describes how to rename the CVM entity in Prism within the AHV environment. This does not change the hostname of the CVM displayed in a console/SSH session as the hostname is a value configured within the CMV OS and is independent of the Controller VM name entity recorded in the Prism entity DB (Insights Data Fabric). It is the same name as in CVM’s XML definition on the AHV host. It can be checked by listing VMs on the host. The name displayed is the name that is shown in the Prism Wen console. Starting from AOS 5.10.10, 5.15 and 5.16, change_cvm_display_name script is available on CVM that can be used to change the display name. Following is the overview of the rename procedure: Complete the pre-checks: Name must start with NTNX- and end with -CVM. Only letters, numbers and "-" are supported in the name. CVM should be able to receive a shutdown token. Once CVM has shutdown token it will be turned off. The script does not put the CVM or the host into mainten
Below are the top knowledge base articles for the month of April 2020. KB 7604 - Disk space usage for root on Controller VM has exceeded 80% KB 4116 - Alert - A1187, A1188 - ECCErrorsLast1Day, ECCErrorsLast10Days KB 7503 - G6, G7 platforms - DIMM Error handling and replacement policy KB 1540 - What to do when /home partition or /home/nutanix directory is full KB 4141 - Alert - A1046 - PowerSupplyDown KB 4158 - Alert - A1104 - PhysicalDiskBad KB 4409 - LCM: (LifeCycle Manager) Troubleshooting Guide KB 1113 - HDD/SSD Troubleshooting KB 8792 - NCC checks: same_hypervisor_version_check, duplicate_cvm_ip_check, same_timezone_check, esx_sioc_status_check, power_supply_check, orphan_vm_snapshot_check giving ERR KB 2090 - AHV | Host and Guest Networking KB 1523 - NCC Health Check: disk_usage_check KB 2473 - NCC Health Check: cvm_memory_usage_check KB 2486 - NCC Health Check: cvm_mtu_check KB 4519 - NCC Health Check: check_ntp KB 4541 - Alert - A101055 - MetadataDiskMountedCheck KB 3357 - NCC H
Hey all, At the suggestion of some people, sharing this video that I’ve created that goes through the VMware upgrade process using Nutanix 1-click functionality. Check it out if you’d like. Apologies in advance for the poor quality - it was the best way for me to hide any confidential info on screen. Cheers!
There may be instances where you'll receive the following alert in your environment "Cassandra on CVM x.x.x.31 is now detached from the ring due to Node was down for a long time. Node detach procedure done by x.x.x.41." Before understanding the alert, let's first understand what is Cassandra and the ring-structure? Cassandra stores and manages all of the cluster metadata in a distributed ring-like manner based upon a heavily modified Apache Cassandra. The Paxos algorithm is utilized to enforce strict consistency. This service runs on every node in the cluster. The Cassandra is accessed via an interface called Medusa To know more about Cassandra and the ring-structure, try going through Nutanix Bible which explains the architecture. . Cassandra has a feature called auto-ring repair which helps to prevent taking the cluster down due to multiple node failures at different intervals. The following article lists more information about the alert, auto-repair feature and ho
We make use of a lot of the FIQL filtering in our automation to pare down results from various REST calls. However, it seems that while filtering on things like category_name or category_value work just fine with an ==, they don’t seem to work with an !=. Is there a way to do an inequality filter, specifically with v3 of the Prism Central API?
Here is a tip on how to reset the password for Nutanix Prism local user. The guide applies to Nutanix Prism Central as well. There are two ways. 1. Using Prism interface Log in to Prism Element with domain user and go to User Management Prism user management From the user's window choose user and click update. On the bottom of the applet there is a Reset password button. 2. Command line Log in to CVM over SSH and get into ncli command line. Follow the step by step instructions by reading Reset Web Console or nCLI Password Also if you want to know how to modify the Prism user password expire days for security reasons, you can follow this article: Modify Prism admin and console user password expire days.
Secure Boot is specifically designed to prevent a malicious boot loader attack and has been the most widely accepted approach for both Windows and Linux. Secure Boot is supported by major hardware and hypervisor vendors. Windows introduced a new specification called Unified Extensible Firmware Interface (UEFI) that connects the computer’s firmware to its operating system (OS). UEFI is now part of an open-source forum UEFI and is expected to eventually replace BIOS. In order for Nutanix to fully support secure boot, Nutanix binaries are now signed with keys that the hardware trusts. The Nutanix public keys will either be available by default in the hardware or a customer would need to manually obtain Nutanix Public Keys and import them into the hardware UEFI administration interface. With Nutanix public keys made available in the hardware, UEFI will allow Nutanix binaries to boot securely. The NCC check returns a PASS if the following is true: All Hosts is running with Secure
There are 3 types of Nutanix nodes: An HCI Node is the most common kind of node. It is heavily equipped with all three components: processing capacity (CPU), memory (RAM), and data storage capacity. An HCI node can run any kind of supported hypervisor. A Storage Node only runs the Nutanix AHV hypervisor. These nodes have a bare minimum of processing and memory capacity however, as the name suggests, have plenty of storage onboard. A Compute Node only runs the Nutanix AHV hypervisor. Logically, these are nodes that have minimum storage onboard but are powerful compute and memory devices. We are going to take a look at compute nodes in this post. A compute-only (CO) node allows you to seamlessly and efficiently expand the computing capacity (CPU and memory) of your AHV cluster. The Nutanix cluster uses the resources (CPUs and memory) of a CO node exclusively for computing purposes. CO nodes enable you to achieve more control and value from restrictive licenses such as Ora
There are 3 types of Nutanix nodes: An HCI Node is the most common kind of node. It is heavily equipped with all three components: processing capacity (CPU), memory (RAM), and data storage capacity. An HCI node can run any kind of supported hypervisor. A Storage Node only runs the Nutanix AHV hypervisor. These nodes have a bare minimum of processing and memory capacity however, as the name suggests, have plenty of storage onboard. A Compute Node only runs the Nutanix AHV hypervisor. Logically, these are nodes that have minimum storage onboard but are powerful compute and memory devices. We are going to take a look at storage nodes in this post. Storage Nodes (sometimes referred to as “Light Compute” Nodes) are nodes that only use AHV as their hypervisor. Due to their nature no user VMs should be run on these nodes. You will still see a CVM. CVMs are integral to Nutanix architecture as they process all storage input-output requests. Simply put you must have a CMV on each no
All, I have a 6 Node 1065 system in 2 blocks. Recently one of the CVMs (node 2, block A) crashed. When rebooted it was just going in loops. When diagnosed it seems the SSD (not the SATADOM) had failed and we replaced it. When we try to boot the CVM, it still just loops. We were told to boot that node with Phoenix which the cluster provided me for download. I do that and it doesn’t load Phoenix and gets errors instead. I’m looking for a suggestion of how to get the node back to 100%. At this point (and throughout) the ESXi on the SATADOM has booted fine and I guess if I didn’t care about the storage side I could just ignore this but I’d like the system to be fully healthy. Any suggestion about how to get the CVM working again would be appreciated. Thank you Johan
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.