How to use RecoveryManager to access the data on your hard drive (Linux server)
You can change the boot mode of your server in the STRATO Server Login, menu item Backup & Recovery / RecoveryManager. You can choose between Normal Boot and Start the Recovery System. The recovery system lets you boot in emergency mode to repair your system.
Please note: Resetting a dedicated server may damage the file system, as the machine only receives a reset signal. If you only want to start recovery mode and still have access to the system, it is recommended that you only change the boot system and manually reboot the system after approximately 3 minutes.
Use SSH to log on to your server if it is available using the recovery system.
You can mount the selected hard disk partition/s on the existing /mnt directory immediately after login.
It is important to distinguish which hardware and software components are installed on your server:Take note that the matching partitions may have different names on your server. Enter the command fdisk -l to view the available partitions on your server.
The mount commands for all partitions are as follows if you have a server with two hard drives mounted in a software RAID array:
mount /dev/md1 /mnt/ mount /dev/md0 /mnt/boot/ |
The mount commands for all partitions are as follows if you have a server with two hard drives mounted in a hardware RAID array:
mount /dev/sda3 /mnt/ mount /dev/sda1 /mnt/boot |
The mount commands for all partitions are as follows if you have a server with only one hard drive mounted:
mount /dev/hda3 /mnt/ mount /dev/hda1 /mnt/boot/ |
You will then have access to the data on the partitions of the normal system, and you will be able to change the configuration files, launch full backups and perform other functions.
Take note that the matching partitions may have different names on your server. Enter the command fdisk -l to show the available partitions correctly on your server.