Forum Discussion

wilfredo_ocasio's avatar
10 years ago

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/adminc...
  • wilfredo_ocasio's avatar
    10 years ago

    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