NOTE: This article is written for our New Cloud Control Panel. A version of this article for our Classic Cloud Control Panel is also available.
If your Linux system has become non-bootable or is suffering from critical system errors, you can use Rescue Mode to recover your system data. These problems may be caused by file system corruption, boot file corruption, or other configuration errors. Normally, if your system encounters any problem during the boot process, you would boot in to a maintenance mode environment known as Single User Mode that would allow you to login with your root password and check for any errors. Unfortunately, using Single User Mode has its share of problems:
To avoid having to use Single User Mode, you can bring your server up in Rescue Mode through the Rackspace Cloud Control Panel.
Rescue mode grants the root user full access to your non-bootable server’s filesystem. You can use it to modify problems in configuration files or to copy data from your Cloud Server to a remote location. Rescue Mode through the Rackspace Cloud Control Panel is similar to booting into single-user mode with networking enabled.
Getting your server into Rescue mode



The server will start to enter Rescue Mode and display an orange status field next to the server name. The initial status should be Preparing Rescue.

When the Rescue Mode build is complete, the status will turn red and display Rescue.

Notice that, for Linux servers, the rescue environment is limited to 90 minutes. This means that you will only have 1.5 hours to correct the problems on your server before it automatically reverts to its original state.
Next, you will receive an e-mail from Rackspace Support which has the parameters for this Rescue window and the IP address of the server. Note: This email does not contain the temporary password which was displayed in the control panel earlier. You will notice that Linux servers are allowed 90 minutes in Rescue Mode, while Windows servers are allowed 24 hours.
You can now use an SSH client to connect to your server using the public IP address and the temporary root password to login to Rescue Mode.

Before you can access the files on your server you'll need to mount the server's file system. To do that you'll need to look at your partitions to determine your file system's device. Once you've logged into your server in Rescue Mode, run the command:
fdisk -l
You'll get output that looks similar to what is below:

Look at the different disk names that are found. A disk entry looks like:
Disk /dev/sdb1: 2147 MB
This shows us the device and the size of the disk. Here is a description of the different disks in the screenshot:
Once you've identified the block for your server's file system check out that part after "Disk" that looks like a file path. In the example above, the device is:
/dev/sda1
It can be different depending on the distribution image used to build your server. Now that you know your file system's device you can assign it a directory and mount it for access. Plug your file system device into the following command in place of "/dev/diskdevice":
mount /dev/diskdevice /mnt
For example, for /dev/sda1 the command would be:
mount /dev/sda1 /mnt
Now you can access your files through the /mnt directory. Just remember that you'll need to put "/mnt" in front of the usual paths you'd use to get to files. For example, if you have a problem in the /etc/fstab file you need to fix, you'd actually access that file at:
/mnt/etc/fstab
If you were to just edit "/etc/fstab" while in rescue mode you'd change the fstab for the rescue mode file system, not your normal file system.
That’s it! Once you are done troubleshooting your system, you can exit Rescue Mode by clicking the button labeled Exit Rescue Mode in the Rackspace Cloud Control Panel on your Server Details page.
Now that we've seen different ways to connect to a Linux Cloud Server, we're going to cover some important security concepts for keeping them safe, starting with a discussion about Host Key Fingerprints.
© 2011-2013 Rackspace US, Inc.
Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License

0 Comments
Add new comment