TSM Web GUI for multiple node in same machine

MollyP

Newcomer
Joined
May 17, 2012
Messages
4
Reaction score
0
Points
0
PREDATAR Control23

Hello,

I have some issue about TSM Web GUI.

I install TSM Client to my AIX box with 3 nodes. (NodeA, NodeB, NodeC)

but I have problem about setup TSM Web GUI. I can only access one node via WEB GUI (NodeA)

Please help me to access another nodes.

Thanks,

Mol
 
PREDATAR Control23

You will need to 3 CAD, each with their open option file and specify a unique HTTPPORT for each node in the option file. Example:

For Node1:
Code:
NODENAME node1
HTTPPORT 1581

For Node2:
Code:
NODENAME node2
HTTPPORT 1582

For Node3:
Code:
NODENAME node3
HTTPPORT 1583

Then when accessing these nodes, you will specify the correct port:
http://hostnane:1581
http://hostnane:1582
http://hostnane:1583
 
PREDATAR Control23

Thanks, marclant. :)

All of 3 nodes combine in same dsm.sys and seperate only dsm.opt, Right? such as

dsm_node1.opt
SErvername dsm1

dsm_node2.opt
SErvername dsm2

dsm_node3.opt
SErvername dsm3

dsm.sys
SErvername dsm1
NODENAME node1
HTTPPORT 1581

SErvername dsm2
NODENAME node2
HTTPPORT 1582

NODENAME node3
HTTPPORT 1583

Than how can I call dsmcad, It's need to copy as dsmcad1 dsmcad2

Thanks.
 
PREDATAR Control23

You will need to a script to export DSM_CONFIG with the option file for a given node, then start dsmcad. Like this:
Code:
NodeA: /A1/tsm/startsched
#!/bin/ksh
export DSM_CONFIG=/opt/tivoli/tsm/ba/bin/dsm_node1.opt
dsmcad

NodeB: /B1/tsm/startsched
#!/bin/ksh
export DSM_CONFIG=/opt/tivoli/tsm/ba/bin/dsm_node2.opt
dsmcad

NodeC: /C1/tsm/startsched
#!/bin/ksh
export DSM_CONFIG=/opt/tivoli/tsm/ba/bin/dsm_node3.opt
dsmcad
 
PREDATAR Control23

Above solution work.

Thanks for your help, marclant :)
 
Top