FRU Replacement Guide
3 Controller Node Replaceable Units
22
Important:
Use capital letters for the MAC address.
q.amplistor.cleanupMachine('
MAC_ADDRESS
')
For example,
In [14]: q.amplistor.cleanupMachine('90:E2:BA:7E:B8:31')
Out[14]: True
This command takes about 10 seconds to complete.
c) Do a sanity check.
Refresh the screen by clicking
Refresh
in the
Commands
pane. Check that the new chassis is no longer in the
FAILED
list.
13.
Update the Active Archive System database with the MAC addresses for the new chassis.
a) From the Management Node, create a cloudAPI connection.
cloudapi = i.config.cloudApiConnection.find('main')
b) From the Management Node, get the machine GUID using your work table value for
Original Hostname of
Node
.
Note:
Use upper case for
HOSTNAME_OF_OLD_NODE
.
machine_guid = cloudapi.machine.find(name='
HOSTNAME_OF_OLD_NODE
')\
['result'][0]
For example,
machine_guid = cloudapi.machine.find(name='HGST-Alpha02-DC01-R02-CN01')\
['result'][0]
c) From the Management Node, get the machine object.
machine = cloudapi.machine.getObject(machine_guid)
d) Display all the Ethernet port names (
eth
N
) that are registered:
For example,
In [4]:
print machine.nics[0].name
eth0
In [5]:
print machine.nics[1].name
eth2
In [6]:
print machine.nics[2].name
eth3
In [7]:
print machine.nics[3].name
eth5
In [8]:
print machine.nics[4].name
eth1
In [9]:
print machine.nics[5].name
eth4