ClusterPack Tutorial

z
This launches the SIM GUI.
References:
z
3.2.3 How to Run SCM Web-based GUI
Using the SIM GUI:
z
Log in as "admin".
z
Select the "Filter" folder.
z
Click "Create Filter".
z
Enter a name to uniquely identify the inventory filter.
z
Enter an optional description.
z
Select one or more categories (e.g. System, Memory, I/O Devices).
z
Select one or more Groups from the selected categories (e.g. BundleContents,
LogicalMemory).
z
For fine control over inventory collection, use "Advanced Settings" to select or
unselect specific items.
Back to Top
1.6.12 Execute remote commands on one or more nodes
A remote command can be executed on one or more nodes in the cluster from any node by using
the 'clsh' command in /opt/clusterpack/bin.
Some examples of clsh usage are:
z
Invoke 'uname -a' on all cluster nodes
%
clsh uname -a
z
Invoke 'uname -a' on node1
% clsh -C node1 uname -a
z
Invoke 'uname -a' on all nodes in the cluster group 'sub1'
%
clsh -C sub1 uname -a
z
Invoke 'uname -a' on node1 and node3
% clsh -C node1+node3 uname -a
For more details on the usage of clsh, invoke the command.
%
man clsh