# Update Bindplane License

If your Bindplane license has expired or you need to update it for any reason, you can do so by following the instructions below.

{% hint style="info" %}
If you require a new license key or have any questions, please contact [<mark style="color:blue;">support@bindplane.com</mark>](mailto:support@bindplane.com)
{% endhint %}

### Bindplane Cloud

To apply or swap a license key after signup, go to Organization Settings and enter your key. Changes take effect immediately.

<figure><img src="https://4134819172-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FA6BP9V0wfJj4LZdQH6OJ%2Fuploads%2FhIZ52SAb4rirU0mPFy4H%2FXnapper-2026-02-06-13.17.24.png?alt=media&#x26;token=b267d700-a895-42cf-a049-1a3b1a54402c" alt=""><figcaption></figcaption></figure>

### Self-Hosted

#### Linux

Linux deployments can be updated by running the following command:

```bash
sudo BINDPLANE_CONFIG_HOME=/var/lib/bindplane \
    /usr/local/bin/bindplane init license \
    --config /etc/bindplane/config.yaml
```

When prompted, enter the new license key.

If you are unable to run the command above, you can manually update the license key in the`/etc/bindplane/config.yaml` file. Open the file in a text editor and update the `license` value.

```yaml
license: 'YOUR_LICENSE_KEY'
```

Once the command has finished, issue a server restart command.

```bash
sudo systemctl restart bindplane
```

#### Kubernetes (Helm)

Bindplane's license is configured as a Kubernetes secret or a value in the Helm chart. To update the license, you can update the secret or the Helm chart value with the new license key.

Reference the [Bindplane Helm Chart](https://github.com/observIQ/bindplane-op-helm) for more information.
