UNSOLVED

mmiglioranzi

updated

21 years ago

0

475

January 30th, 2006 02:00

How many acsls connection for each NetWorker backup server?

Hi all.
I wondering to know if it is possible to use more than one acsls connection by ssi for one NetWorker backup server.

Thanks
  • ble1

    6 Operator

    14354 Posts

    56186 Points

    95

    0

    Posted January 30th, 2006 02:00

    Yes you can. Here is an example of starup script (part which is related to SSI):
    --------------------------
    /usr/sbin/mini_el&

    CSI_HOSTNAME=hcrvelin1
    SSI_BASE_SOCKET=55555
    export CSI_HOSTNAME
    export SSI_BASE_SOCKET
    /usr/sbin/ssi&

    CSI_HOSTNAME=hcrvelin2
    SSI_BASE_SOCKET=66666
    export CSI_HOSTNAME
    export SSI_BASE_SOCKET
    /usr/sbin/ssi&
    --------------------------

    So, you need to define name of ACSLS machine under CSI_HOSTNAME. SSI_BASE_SOCKET is not required unless you wish to restrict port usage.

    Of course, you will have on server side so many ssi processes as many CSI machines you will define (single ssi can communicate only with single csi on ACSLS).

    For other settings check ssi/mini_el/libstlstk manual.

    Message was edited by: hcrvelin


    Message was edited by: hcrvelin
  • 95

    0

    Posted January 30th, 2006 07:00

    thanks a lot