- 论坛徽章:
- 0
|
在网上发现了这篇讲TSM服务器之间的通讯的文章,讲得很不错,一起分享一下!
EveryServer of the group has to execute following commands on Local to establish the server-to-server-connections between each other.
1.Prepare ServerA to be contacted by other ones:
SET SERVERNAME ServerA
SET SERVERPASSWORD PasswordA
SET SERVERHLA own-ipaddress
SET SERVERLLA own-ipport (probably 1500)
SET CROSSDEFINE ON
REGISTER ADMIN OVERALL onepassw0rdf0rall
GRANT AUTH OVERALL CLASS=SYSTEM
(execute the same command on ServerB)
2.Define connections to all other computers (leave out the command for your own one):
DEFINE SERVER ServerB HLA=ip-address-of-ServerB LLA=ipport-of-ServerB
SERVERPASSWORD=PasswordB CROSSDEFINE=YES
3.Test connections to each defined server (leave out command for your own server):
ServerB: QUERY SESSION
ServerB: QUERY NODE
4.Define servergroups and use them (again: don’t define your own server as GRPMEMBER)
DEFINE SERVERGROUP ALL
DEFINE GRPMEMBER ALL ServerB,ServerC,.....
ALL: QUERY STGPOOL
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/9663/showart_131019.html |
|