Hello,
I'm using racadm to apply server configuration to the FX2s CMCs. The import operation completes with errors:
racadm.exe -r fx002.somedomain.sometld -i set -f fx002.xml -t xml
Message=[SYS055: Import of system configuration XML file operation completed with errors.]
With the R330/R430 servers, I'm able to use WBEM to determine where the configuration is failing and subsequently fix it, e.g.
$cs = New-CimSession -ComputerName r330.somedomain.sometld -Authentication Basic `
-Credential (Get-Credential -UserName root -Message "Provide Drac User Details") `
-SessionOption (New-CimSessionOption -SkipCACheck -SkipCNCheck -SkipRevocationCheck `
-Encoding utf8 -UseSsl) -Port 443
(Invoke-CimMethod -InputObject `
(Get-CimInstance -CimSession $cs `
-ResourceUri "schemas.dell.com/.../DCIM_LCRecordLog" `
-Namespace root/dcim) -CimSession $cs -MethodName "GetConfigResults" `
-Arguments @{JobID="JID_718737089141"}).ConfigResults
Is it possible to do the same with the FX2s CMCs? (At the moment using the above fails)
If not, what's the alternative in identifying which attributes in the configuration import are causing the failures?