---
title: "Managing a legacy VPS"
description: "Find out how to manage a VPS of a discontinued range in the OVHcloud Control Panel"
url: https://docs.ovhcloud.com/en/guides/bare-metal-cloud/virtual-private-servers/vps-legacy-control-panel
lang: en
lastUpdated: 2024-01-22
---
# Managing a legacy VPS

## Objective

You can identify an old-range VPS by the reference name displayed in your OVHcloud Control Panel
: If this internal identifier has the format _vpsXXXX.ovh.net_
 (in which _X_
 stands for a number) and you have not migrated the corresponding VPS to our [current product line](https://www.ovhcloud.com/en-gb/vps/)
, this is a legacy VPS. There are a few differences to consider when managing such a service.
The reference name of a current VPS looks like this: _vps-XXXXXXX.vps.ovh.net_ (where _X_ can be a number or a letter).

**This guide explains the Control Panel functions of a legacy VPS.**

## Requirements

- A legacy [Virtual Private Server](https://www.ovhcloud.com/en-gb/vps/vps-offer-migration/) in your OVHcloud account
- Access to the <ManagerLink to="/">OVHcloud Control Panel</ManagerLink>

## Instructions

Log in to the OVHcloud Control Panel
, open `Bare Metal Cloud
` and select your server from `Virtual Private Servers
`. On the `Home
` tab you can access the main VPS operations from the section **Shortcuts**
.
![controlpanel](/images/bare-metal-cloud/virtual-private-servers/vps-legacy-control-panel/legacy_vps_1.png)
### Delete VPS

This will open a popup window to initiate the process of [cancelling your service](/en/guides/account-and-service-management/managing-billing-payments-and-services/how-to-cancel-services.md).

### Reboot in rescue mode

Click on this option to restart the VPS into rescue mode. Find all the details in [our guide](/en/guides/bare-metal-cloud/virtual-private-servers/rescue.md).

On legacy VPS ranges, your partitions will be automatically mounted in rescue mode. You can use the following command to verify this and identify where your partition is mounted:

```bash
lsblk
```

### Reboot my VPS

This Control Panel option will carry out a "hard reboot" of your VPS if you click on `Confirm
` in the popup window.
A restart might become necessary in order to apply updated configurations or to fix an issue. Whenever feasible, perform a "soft reboot" via the command line:

```bash
sudo reboot
```

### Reinstall my VPS

Click on this option to install a new operating system. In the popup window, you will be asked to choose:

- An operating system from the drop-down list
- The language
- An [SSH key](/en/guides/bare-metal-cloud/dedicated-servers/creating-ssh-keys.md) (optional)

Note that the selection of operating systems might be limited on your service.

:::info
Some proprietary operating systems or platforms such as Plesk or cPanel require licences which generate additional fees. Licences can be managed from the OVHcloud Control Panel: Go to the `Bare Metal Cloud
` section, then open `Licences
`.
:::

You will receive an email once the installation is complete. This process may take up to 30 minutes.

#### Connecting to your VPS after reinstallation

When you reinstall your VPS, you will be sent an email containing your root password for connecting to your VPS via [SSH](/en/guides/bare-metal-cloud/dedicated-servers/ssh-introduction.md), unless you have selected an [SSH key](/en/guides/bare-metal-cloud/dedicated-servers/creating-ssh-keys.md) to be preinstalled.

#### Disabling remote access for the root user

The user "**root**" is created by default on GNU/Linux systems. Root access means having the highest level of permissions on an operating system. It can be dangerous to leave your VPS accessible via the root user login and password, as this account can perform irreversibly damaging operations.

You can disable root user logins via the SSH protocol. Remember to [create another user](/en/guides/bare-metal-cloud/virtual-private-servers/secure-your-vps.md#createuser) before following the steps below.

Use a text editor such as _vim_ or _nano_ to edit this configuration file:

```bash
sudo nano /etc/ssh/sshd_config
```

Locate the following line:

```console
PermitRootLogin yes 
```

Replace **yes** with **no** after `PermitRootLogin`. Save and exit the editor.

For this modification to be taken into account, you need to restart the SSH service with one of the following commands:

```bash
sudo systemctl restart ssh
```

```bash
sudo systemctl restart sshd
```

This should be sufficient to apply the changes. Alternatively, reboot the VPS (`~$ sudo reboot`).

Afterwards, connections to your server via root user (`ssh root@IPv4_VPS`) will be rejected.

### KVM

Use this option to connect to your VPS via KVM. Find all the details in [our guide](/en/guides/bare-metal-cloud/virtual-private-servers/using-kvm-for-vps.md).

### Change holder

This link directs you to the form to fill out in case the owner of the VPS has to be changed. Contact our support teams by creating a ticket in the OVHcloud Control Panel
 if you need assistance with this procedure.
### Migrate to the new range

Your VPS can be migrated to the current range automatically. Find out the benefits of this offer on our [VPS migration FAQ page](https://www.ovhcloud.com/en-gb/vps/vps-offer-migration/).

## Go further

[Introduction to SSH](/en/guides/bare-metal-cloud/dedicated-servers/ssh-introduction.md)

[Creating and using SSH keys](/en/guides/bare-metal-cloud/dedicated-servers/creating-ssh-keys.md)

[Securing a VPS](/en/guides/bare-metal-cloud/virtual-private-servers/secure-your-vps.md)

[Getting started with a VPS](/en/guides/bare-metal-cloud/virtual-private-servers/starting-with-a-vps.md)

Join our [community of users](https://community.ovhcloud.com/).
