Configure OST on DXi
Tyring to start a new OST config I get an error on the CLI and the same error using the NBU 7.5_06 Wizard -
Any insight will be appreciated .
[root@nbu:~ ]# /usr/openv/netbackup/bin/admincmd/nbdevconfig -creatests -storage_server nbu_quantum11 -stype Quantum -media_server nbu -st 9
RDSM has encountered an issue with STS where the server was not found: getStorageServerInfo
Failed to create storage server nbu_quantum11, invalid command parameter
[root@nbu:~ ]#
09:40:35.832 [29491] <16> dsm_create_storageserver: RDSM has encountered an issue with STS where the server was not found: getStorageServerInfo
09:40:35.832 [29491] <16> dsm_create_storageserver: ServiceException: method=getStorageServerInfo():2086 class=RemoteDiskServiceMgr service=RemoteDiskService host=nbu errorDomain=RDSM errorCode=2055011 errorText=getStorageServerInfo
09:40:35.833 [29491] <16> nbdevcommon: (-) Translating RDSM_ERR_STSX_SERVERNOTFOUND(2055011) to 20 in the NetBackup context
09:40:35.833 [29491] <16> creatests: failed to create storage server nbu_quantum11 (bp_status = 20)
09:40:35.838 [29491] <2> nbdevconfig: operation returned status = 20
09:40:35.838 [29491] <16> DevConfigCLI::analyzeOp: Failed to create storage server nbu_quantum11, invalid command parameter
09:40:35.842 [29491] <2> nbdevconfig: Exiting, status = 20
The solution was to set the proper TCP options on Solaris 11 :
#!/bin/sh
# adjust the TCP buffer size so 'setsockopt(...)' from the plug-in
# works properly
/usr/sbin/ipadm set-prop -p max_buf=8388608 tcp
/usr/sbin/ipadm set-prop -p send_buf=1048576 tcp
/usr/sbin/ipadm set-prop -p recv_buf=1048576 tcp
/usr/sbin/ipadm set-prop -p _wscale_always=1 tcp
/usr/sbin/ipadm set-prop -p _tstamp_if_wscale=1 tcp
thanks everyone