Image may be NSFW.
Clik here to view.
Many have already heard about it or even used it once in a while, but most have probably not been introduced to it yet: Our rescue system! While hopefully not being needed often, it provides many possibilities to fix certain problems and to bring the machine back online as soon as possible. When the server is down, every second counts. It is important to know what to do beforehand. Thus, I will provide you with some basic information first:
Our rescue system is based on the SystemRescueCD. This is a specialised Linux distribution for recovery purposes. I can highly recommend it for private usage as well. I always carry a bootable thumb drive with me Image may be NSFW.
Clik here to view. . The rescue system starts on our servers via PXE network boot. This has several advantages:
- It is available as long as the server is connected to our network.
- It is always accessible with the same known login credentials.
- It boots isolated from the operating system and its settings.
The rescue system can be chosen for Dedicated Servers or VPS's in your Customer Control Panel. After clicking on the rescue icon, a new page opens with a short info text and the version control. The version should match the operating system. This is 64 bit in most cases. Once you click on "Start rescue system", your server will reboot right away.
The system will available after a few minutes via SSH under the server IP and the default port 22. The root password is the default that we have sent you when you ordered the server. We can send you that e-mail again if necessary. We recommend PuTTy (command line) and WinSCP (file transfer) as Windows clients.
You will probably need access to your data. Check first which partitions are available:
fdisk -l
The root file system is usually located on /dev/sda1 or /dev/vda1. Use the following command to mount the according partition:
mount /dev/sda1 /mnt/custom
Your server files are now available in /mnt/custom.
If you use Windows as operating system on your server, our rescue system can be helpful despite the different architecture. The C: drive is usually located on /dev/sda2 or /dev/vda2. The command to mount it with write access is a bit different:
ntfs-3g /dev/sda2 /mnt/windows
You are now set to modify configuration files or to retrieve personal data. WinSCP is perfect for those jobs.
When you have finished your work and want to boot your server normally again, enter the following commands:
exitrescue
reboot
Your server should then boot from the hard disk again and be available as usual.
This was supposed to be a short introduction. Becoming familiar with the Linux shell and its possibilities is very advantageous. I can definitely recommend the tutorials on nixCraft for further reading.
More tutorials for certain procedures will follow, so stay tuned!