---
title: "Delete load balancer"
sidebar_label: "Delete load balancer"
sidebar_position: 10
description: "How to delete a load balancer"
---

import Tabs from '@theme/Tabs'
import TabItem from '@theme/TabItem'
import MoreVerticalIcon from '@selectel/docux/icons/more-vertical'
import {TabItemLabel} from '@selectel/docux/components'
import Formbricks from '@theme/MDXComponents/Formbricks'

# Delete load balancer

Together with the load balancer, its rules and target groups will be deleted. Cloud servers included in the groups will not be deleted.

<Tabs queryString="delete-load-balancer">
  <TabItem value="panel" default>
    <TabItemLabel>
      Control panel
    </TabItemLabel>

    1. In the [Control panel](https://my.selectel.ru/vpc/default/lbaas/load-balancers/), on the top menu, click **Products** and select **Cloud Servers**.
    2. Go to the **Load Balancers** section → **Load Balancers**.
    3. In the <MoreVerticalIcon /> menu of the load balancer, select **Delete load balancer**.
    4. To confirm deletion, enter the name of the load balancer.
    5. Click **Delete**.
  </TabItem>

  <TabItem value="openstack">
    <TabItemLabel>
      OpenStack CLI
    </TabItemLabel>

    1. [Open the OpenStack CLI](/cloud-servers/tools/openstack-cli/).
    2. Delete the load balancer:

       ```bash
       openstack loadbalancer delete <loadbalancer>
       ```

       Specify `<loadbalancer>` — the load balancer ID or name. You can view the list using the `openstack loadbalancer list`.
  </TabItem>
</Tabs>

<Formbricks />
