Writing down some issues I found during the installation of the Nutanix Community Edition on old Dell 715 and 630 Servers.
Since the controllers of this Servers does not support IT mode or Pass through I had to configure them all as RAID 0.
After that it is necessary to cancel the installation Window because the Disks are only recognized as HDDs.
To cancel the install window press Shift + R and the screen session is terminated.
After that execute the following commands in order to define the SSD disks:
killall screen
#choose the drive letters which are the SSDs on your system and execute the following command for each drive.
echo 0 > /sys/block/sd?/queue/rotational
Restart the installation with the following command:
./ce_installer && screen -r
#Install Microstack
sudo snap install microstack --beta --devmode
#Microstack
#Start with Access to LVM for attached volumes
sudo microstack init --auto --control --setup-loop-based-cinder-lvm-backend --loop-device-file-size 100
# Disable
sudo snap disable microstack
# Enable
sudo snap enable microstack
#launch new Vm instance using CentOS image and VM size 2
microstack.launch --flavor 2 CentOS --name Check_MK_TEST
#Configure this on the Host so the VMs have access to the internet
sudo iptables -t nat -A POSTROUTING -s 10.20.20.1/24 ! -d 10.20.20.1/24 -j MASQUERADE
sudo sysctl net.ipv4.ip_forward=1
sudo iptables -I FORWARD -s 10.20.20.1/24 -j ACCEPT
sudo iptables -I FORWARD -d 10.20.20.1/24 -j ACCEPT
sudo iptables -L -v -n --line-numbers
sudo iptables -L -v -n -t nat --line-numbers
#Get Admin password
sudo snap get microstack config.credentials.keystone-password
suffix1="<"; suffix2=">"; VARIABLE="aaa,bbb,ccc"; echo ${VARIABLE} | sed -E "s/([^,]+)/\1${suffix2}/g" | sed -E "s/([^,]+)/${suffix1}\1/g" | sed -E "s/,/;/g" | sed -E "s/$/;/"
Here is an example of how to send an email using curl on a Unix shell:
echo "To: <email@example.com>;<email@example.com>;<email@example.com>;<email@example.com>;
Subject: Sending an Email with Curl!
Just wanted to check you were able to receive this email, sent over the curl command.
Has it gone into spam?.
Thanks.
" | curl -s --ssl-reqd smtp://example.com --mail-from 'example@example.com' --mail-rcpt 'example@example.com' --upload-file /dev/stdin
And here from a bash script:
echo -e "To: email@example.com\nSubject: Service is being restarted\n\nMaximum Service Check Attempts are reached!!!\nService is currently being restarted, this can take some time, wait until the next notification, before any action!" | /usr/bin/curl -s --ssl-reqd smtp://smtp.example.com --mail-from 'example@example.com' --mail-rcpt 'email@example.com' -n -T -
Webhosting | Webdesign | Travel