UNSOLVED

rajasekhar_redd

updated

9 years ago

R

rajasekhar_redd

1 Rookie

8 Posts

0

3051

November 19th, 2017 23:00

Cluster Configuration information.

hostname command gives the hostname. Is there a similar command to get the cluster name?

What is the variable that keeps the clustername? Where is the cluster configuration file stored in isilon?

  • rajasekhar_redd

    1 Rookie

    8 Posts

    2402

    0

    Posted November 20th, 2017 00:00

    Thank you for your response.

    isi cluster identity view command doesn't exis on OneFS 7.1 and 8.0

    isi cluster

    bad subcommand cluster

    Usage:

    isi

    See 'isi --help' for more information.

    isi status is a heavy command to get the cluster name. Isn't there a simple

    command that gives just the cluster name? Even a variable that is reserved

    for the clustername would do for me.

    Regards,

    Rajasekhar Reddy

    Broadcom IT storage

    +91-80-419-78942

    Rajasekhar.Reddy@broadcom.com

    On Mon, Nov 20, 2017 at 1:35 PM, AkshayK.umar2 <

  • 2402

    1

    Posted November 20th, 2017 00:00

    Isilon cluster name is not a node setting, its cluster wide setting. And to view any cluster settings you'll have to use "isi" commands.

    Try :

    isi cluster identity view

    or

    isi status

  • mitom1

    2 Posts

    2402

    2

    Posted November 20th, 2017 03:00

    what about to run following command instead?

    # echo "name" | isi config | grep cluster

    or use OneFS API by using curl as follows,

    # curl -sk -u "root" -H 'Content-type:application/json' -X GET 'https://CLUSTERIPADDR:8080/platform/1/cluster/config' | python -c "import sys, json; print json.load(sys.stdin)['name']"

  • Phil.Lam

    4 Apprentice

    641 Posts

    12 Points

    2402

    1

    Posted November 20th, 2017 10:00

    rajasekhar.reddy@broadcom.com

    when you log in to an isilon node, the cluster name is before the "-". x400-1 is node 1.

    example:

    x400-1# isi config

    ...

            Node build: Isilon OneFS v7.2.1.5 B_MR_7_2_1_5_104(RELEASE)

            Node serial number: SX400-301315-0019

    x400 >>> ?

    Documented commands (type help ):

    ========================================

    changes  deliprange  help       ipset     migrate  netmask  remove    timezone

    commit   encoding    interface  joinmode  mtu      quit     shutdown  version

    date     exit        iprange    lnnset    name     reboot   status    wizard

    x400 >>> name

    The cluster name is currently set to 'x400'

    x400-1#

  • rajasekhar_redd

    1 Rookie

    8 Posts

    2402

    0

    Posted November 20th, 2017 18:00

    Thank you so much. Both the patterns are helpful.

    Regards,

    Rajasekhar Reddy

    Broadcom IT storage

    +91-80-419-78942

    Rajasekhar.Reddy@broadcom.com

    On Mon, Nov 20, 2017 at 4:39 PM, mitom1