This post is more than 5 years old
7 Posts
0
4646
July 19th, 2016 14:00
Communication error adding Slave MDM
Fresh install with EMC ScaleIO v2.0-6035.0 using the vcenter plugin on VMware ESXi, 6.0.0, 3380124
During the deployment process, I get this error adding the slave MDM
FAILED (Error code: COMMUNICATION_ERROR) : Add Slave MDM
I already moved to a different set of esx servers (different hardware vendor) and got the exact same error.
I can ping between the hosts using the data IPs below.
Any ideas?
-------
Jul 19, 2016 8:17:00 PM Host: esx-a1-3.ilab.plexxi.com - SUCCEEDED: Install ScaleIO Module [IP: 172.25.200.3, module: TB]
Jul 19, 2016 8:17:00 PM Host: esx-a1-2.ilab.plexxi.com - SUCCEEDED: Install ScaleIO Module [IP: 172.25.200.2, module: SLAVE_MDM]
Jul 19, 2016 8:17:00 PM Host: esx-a1-1.ilab.plexxi.com - SUCCEEDED: Install ScaleIO Module [IP: 172.25.200.1, module: MASTER_MDM]
Jul 19, 2016 8:17:00 PM Host: esx-a1-1.ilab.plexxi.com - STARTED: Add Master MDM [Mgmt IPs: [172.25.200.1], data IPs: [10.1.100.1, 10.1.101.1]]
Jul 19, 2016 8:17:08 PM Host: esx-a1-1.ilab.plexxi.com - SUCCEEDED: Add Master MDM [Mgmt IPs: [172.25.200.1], data IPs: [10.1.100.1, 10.1.101.1]]
Jul 19, 2016 8:17:08 PM Host: esx-a1-2.ilab.plexxi.com - STARTED: Add Slave MDM [Mgmt IP: 172.25.200.2, data IP 1: 10.1.100.2, data IP 2: 10.1.101.2]
Jul 19, 2016 8:17:11 PM Host: esx-a1-2.ilab.plexxi.com - FAILED (Error code: COMMUNICATION_ERROR) : Add Slave MDM [Mgmt IP: 172.25.200.2, data IP 1: 10.1.100.2, data IP 2: 10.1.101.2]
Jul 19, 2016 8:23:48 PM Host: esx-a1-2.ilab.plexxi.com - STARTED: Add Slave MDM [Mgmt IP: 172.25.200.2, data IP 1: 10.1.100.2, data IP 2: 10.1.101.2]
Jul 19, 2016 8:23:52 PM Host: esx-a1-2.ilab.plexxi.com - FAILED (Error code: COMMUNICATION_ERROR) : Add Slave MDM [Mgmt IP: 172.25.200.2, data IP 1: 10.1.100.2, data IP 2: 10.1.101.2]
Jul 19, 2016 8:37:48 PM Host: esx-a1-2.ilab.plexxi.com - STARTED: Add Slave MDM [Mgmt IP: 172.25.200.2, data IP 1: 10.1.100.2, data IP 2: 10.1.101.2]
------


RHasleton1
73 Posts
0
April 19th, 2017 11:00
A few things to do on the ESXi hosts to verify connectivity:
1. Make sure the SDC is installed. It should be
esxcli software vib list |grep sdc
2. Check the SDC parameters
cat /etc/vmware/esx.conf |grep scini
You should see a GUID and the MDM IPs (or Virtual IPs if you are using them) listed there. If you don't see the any of those listed, go to step 3.
3. Add the SDC parameters as follows:
esxcli system module parameters set -m scini -p "IoctlIniGuidStr=GUID_GOES_HERE ioctlMdmIPStr=10.0.0.x,10.0.0.y,10.1.1.x,10.1.1.y"
(The above is all one line). Substitute your own unique GUID and your own IPs for the MDMs.
4. Reboot the ESXi host for the parameter changes to take effect properly.
You can find the same instructions here:
https://support.emc.com/kb/466097
Hope that helps