How to install 3 nodes Nutanix Cluster in one ESXi 6.0 Server

Nutanix announce a CE edition and could download from The newest version is ce-2015.06.08-beta.img.gz. If you want install it into ESXi 6.0 , please use this version. So what we need to prepare ? Please reference here Joep wrote for install on the Fusion. Website is here

http://www.virtuallifestyle.nl/2015/06/nextconf-running-nutanix-community-edition-nested-on-fusion/

But I found some tips we need to know when we installed into ESXi. My idea is put three nodes into one ESXi server. My X86 Server with 32 GB RAM, 480 SSD and 2 TB Seagate HDD. Let‘s start installing Nutanix CE into ESXi 6.0

1. ESXi 6.0 Installed - I think I will skip how to install the ESXi 6.0 and vCenter 6.0, you can find many documents talking about how to install VMware software .

2. Create VM - From the beginning , I thought in a nest environment . So I choose the VM type as ESXi6 . But I got kernel panic when I tried to install Nutanix CE. Then suddenly I think Nutanix original base is linux base, so I choose Centos4/5/6 as my VM OS type . Then the kernel panic issue gone. At least 4 vCPU and 16 GB RAM.

Please also click on "Hardware Virtualization"

3. Create All VMDK for nest
Nutanix CE used - We need create at least 200 GB SSD, and 500 GB HDD for this VM. If you have enough space to use. You can use thick/eager zeroed thick vmdk format. If you don‘t have such space , you just use thin format . We also need to attach the Nutanix installation gz file. Untar ce-2015.06.08-beta.img.gz , and you will get a ce-2015.06.08-beta.img file around 7.5 GB rename is as "ce-flat.vmdk. Please also download the ce.vmdk from Joep site. Please those two files in same folder.

4. Start install - Boot up this VM , and you will see the login prompt . "Do not type install first" , just login using root / nutanix/4u jogin as root permission .  You need to modified some files. If you do not edit  those files , you always get some errors. we need to change some installation check files. Those files are .

4a. go to /home/install/phx_iso/phoenix find one file called minimum_reqs.py , using vi open and edit it. Find the words like
-->
 checkVtd(dmesg)
 checkSSD() 
 checkDiskModels(param_list)
 checkInstallationDiskSize(param_list)

Change into
-->
 checkVtd(dmesg)
 #checkSSD() 
 checkDiskModels(param_list)
 checkInstallationDiskSize(param_list)
 4b. vi the second file "sysUtil.py" , change the value of these two parameter .

SSD_rdIOPS_thresh = 50

SSD_wrIOPS_thresh = 50

logout , and you will get login prompt again . type "install" . The installation took you about 5-10 minutes to complete .

5. Change your network setting in ESXi - Please change your vswitch setting , go security and make Promiscuous mode = Accept . Otherwise your CVM can‘t ping each other .

6. Create your cluster - I suggest using commend line to create cluster will be easier for you . And all the step you need to do.  I found I need to setup all the steps and make Nutanix CE normal .

[email protected]$ cluster -s cvm_ip_addrs1, cvm_ip_addrs2, cvm_ipaddrs3  create

[email protected]$ cluster start

[email protected]$ ncli cluster edit-params new-name=cluster_name

[email protected]$ ncli cluster add-to-name-servers servers="dns_server"

[email protected]$ ncli cluster get-name-servers Configure the NTP servers.

[email protected]$ ncli cluster add-to-ntp-servers servers="ntp_server"

[email protected]$ ncli cluster set-external-ip-address

After that you could see you have three nodes running in one ESXi Server . Just like this .

and each node almost take 7 GB RAM , and total need is 21 GB around.  See the picture , why I more than 24 GB, because I have one vCenter take 8 GB..

Any comments please let me know ..

Albert

时间: 2024-08-29 01:08:38

How to install 3 nodes Nutanix Cluster in one ESXi 6.0 Server的相关文章

Node 192.168.248.12:7001 is not empty. Either the node already knows other nodes (check with CLUSTER NODES) or contains some key in database 0.

[[email protected] src]# ./redis-trib.rb add-node --slave --master-id4f6424e47a2275d2b7696bfbf8588e8c4c3a5b95 172.168.63.202:7001172.168.63.202:7000 ...... [OK] All nodes agree about slotsconfiguration. >>> Check for open slots... >>> Ch

解决报错Could not satisfy explicit device specification '' because the node was colocated with a group of nodes that required incompatible device '/device:GPU:0'

sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))改为如下:sess = tf.Session(config=tf.ConfigProto(allow_soft_placement=True, log_device_placement=True)) 备注:allow_soft_placement=True表示当没有GPU实现可用时,使用将允许TensorFlow回退到CPU. 解决报错Could not sati

Redis-cluster集群【第四篇】:redis-cluster集群配置

Redis分片: 为什么要分片:随着Redis存储的数据越来越庞大,会导致Redis的性能越来越差! 目前分片的方法: 1.客户端分片 在应用层面分片,程序里指定什么数据存放在那个Redis  优势:比较灵活    缺点:加个节点扩容就很费劲 2.代理Proxy分片  第三方的Twemproxy  使用代理的缺点,你代理什么性能,那么你整个Redis的性能就是什么样的! 3.redis cluster 4.codis (豌豆荚)开源 Redis cluster: 这里摘录:http://redi

[转]Running KVM and Openvswitch on Ubuntu 12.10

Running KVM and Openvswitch on Ubuntu 12.10 I've got an aging VMWare ESXi 4.0 server that needs to be replaced with something a little more modern and flexing. Obviously at home I don't need all the cool features that licensed VMWare comes with, but

Install MariaDB Galera Cluster 10.0.20

安装环境: OS:Centos 6.6 [[email protected] ~]# uname -a Linux heartbeat1 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux 数据库软件:MariaDB Galera Cluster 10.0.20 主机配置: Heartbeat1 10.0.0.7 Heartbeat2 10.0.0.8 Heartbeat

redis cluster

Redis cluster 介绍 Redis在3.0版正式引入了集群特性.Redis集群是一个分布式(distributed).容错(fault-tolerant)的 Redis内存K/V服务, 普通单机 Redis 使用的功能 仅是集群中的功能的一个子集(subset).Redis集群并不支持处理多个keys的命令,因为这需要在不同的节点间移动数据,从而达不到像Redis那样的性能,在高负载的情况下可能会导致不可预料的错误. Redis集群的几个重要特征: (1).Redis 集群的分片特征在

Redis Cluster集群搭建测试

# Redis Clutser # ## 一.Redis Cluster集群 ## 参考资料: http://www.cnblogs.com/lykxqhh/p/5690923.html Redis集群搭建的方式有多种,例如使用zookper等,但从redis3.0之后版本支持redis cluster集群,Redis Cluster采用无中心结构,每个节点保存数据和整个集群状态,每个节点都和其他所有节点连接.其redis cluster架构图如下: 其结构特点: 1.所有的redis节点彼此互

redis cluster practice

redis cluster practice 1. create three instance folder: 9001,9002,9003,folder name as  redis instance port 2.Store configuration files redis-server, redis.conf to the three folders 3.Change redis.conf  file, keep below setting: daemonize yesport 9001

Redis3.2.4 Cluster集群搭建

一.redis cluster安装 1.下载和编译安装 cd /home/xm6f/dev wget http://download.redis.io/releases/redis-3.2.4.tar.gz tar -zxvf redis-3.2.4.tar.gz cd redis-3.2.4/ make && make install 2.创建redis节点选择2台服务器,分别为:192.168.1.105,192.168.1.160,每台服务器有3个节点,组成3个主节点,3个从节点的r