Jump to content
Welcome to our new Citrix community!

Arvind Kandula

Administrators
  • Posts

    96
  • Joined

  • Last visited

Community Answers

  1. Arvind Kandula's post in Need help on cli command to remove nodes from the VIP was marked as the answer   
    To remove nodes from the VIP using the CLI, you can follow these steps:
    1.     Log in to the NetScaler appliance using SSH or console access.
    2.     Identify the VIP for which you want to remove nodes. You can use the following command to view the configured VIPs:
    show lb vserver
    Note down the name or IP address of the VIP you want to modify.
    3.     Once you have identified the VIP, you can use the following command to view the configured nodes for that VIP:
    show lb vserver <VIP_name_or_IP>
    Note down the names or IP addresses of the nodes you want to remove.
    4.     To remove a node from the VIP, use the following command:
    rm server <node_name_or_IP>
    Replace <node_name_or_IP> with the actual name or IP address of the node you want to remove.
    For example, if you want to remove a node with the IP address 192.168.1.10 from the VIP named "myvip", the command would be:
    rm server 192.168.1.10
    Repeat this command for each node you want to remove from the VIP.
    5.     After removing the nodes, save the configuration changes using the following command:
    save config
    This will ensure that the changes are persisted across reboots.
×
×
  • Create New...