If your Linux VM is inaccessible due to any reason, you can try rescue the VM using the following steps.
Required roles
To get the permissions that you need to rescue a VM, ask your administrator to grant you the following IAM roles on the project:
-
Compute Instance Admin (v1) (
roles/compute.instanceAdmin.v1
) -
VMs that use a service account:
Service account user (
roles/iam.serviceAccountUser
)
For more information about granting roles, see Manage access to projects, folders, and organizations.
These predefined roles contain the permissions required to rescue a VM. To see the exact permissions that are required, expand the Required permissions section:
Required permissions
The following permissions are required to rescue a VM:
-
compute.instances.create
on project -
compute.disks.create
on project -
compute.instances.get
on project -
compute.disks.createSnapshot
on disks -
compute.instances.attachDisk
on new VM -
compute.disks.use
on disk -
compute.instances.start
on new and inaccessible VM -
compute.instances.stop
on new and inaccessible VM
You might also be able to get these permissions with custom roles or other predefined roles.
Rescue a VM
If you can't connect to your VM, or your boot disk is full, you must create a temporary VM to rescue the inaccessible VM.
- (Optional) Stop the inaccessible VM.
- Create a snapshot from the boot disk of the inaccessible VM. If the root file system is split across multiple disks, you must snapshot each disk.
- Create a temporary VM using a public image closest to inaccessible VM's OS. In some cases a trusted image policy might restrict you from creating boot disks from public images. In such cases you must ask an administrator to temporarily lift this restriction before you can create a rescue VM. See Set image access constraints for more information.
For each of the snapshots of the inaccessible VM's boot disks you previously created, create a new disk from the snapshot and attach it to the rescue VM by doing the following:
In the Google Cloud console, go to the VM instances page.
Click the name of the temporary VM that you created.
Click
Edit.Under Additional disks, click
Add new disk, and then do the following:- Add the disk name, like my-recovery-disk
- For Source type, select the Snapshot tab.
- In the Source snapshot drop-down menu, select the snapshot of the source VM that you created earlier in these steps.
- Click Done.
Click Save.
Connect to the temporary VM using SSH.
Identify the name of each of the disks that you previously attached to the VM by running the following command:
lsblk -d -o NAME,SERIAL
The output is similar to the following:
NAME SERIAL sda rescue-vm sdb my-recovery-disk
In this example,
rescue-vm
is the boot disk of the rescue VM andmy-recovery-disk
is the boot disk from the snapshot of the inaccessible VM. Note theNAME
of the inaccessible VM for use in the next step.For each of the disks that you previously attached to the VM, do the following:
Identify the file system of each partition by running the following command:
fdisk -l /dev/NAME -o Device,Size,Type
Replace
NAME
with the name of the inaccessible VM's boot disk from the previous step. In this example, the name would besdb
.The output is similar to the following:
Disk /dev/sdb: 10 GiB, 10737418240 bytes, 20971520 sectors Disk model: PersistentDisk Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: B31430F1-F041-4555-96B9-B2F43DC057AD Device Size Type /dev/sdb1 2M BIOS boot /dev/sdb2 20M EFI System /dev/sdb3 10G Linux filesystem
The
Type
column lists the file system of each partition. If the file system type is missing for any partitions, run the following command:file -sL /dev/PARTITION_NAME
Replace
NAME
with the name of the partition.The output differs depending on the file system type:
No file system: If the output only displays
data
, the partition doesn't contain a file system. Example output:/dev/sdb1: data
EFI file system: If the output describes a DOS/MBR boot sector, the partition has an EFI file system. Example output:
dev/sdb2: DOS/MBR boot sector, code offset 0x3c+2, OEM-ID "mkfs.fat", sectors/cluster 4, reserved sectors 4, root entries 512, sectors 40960 (volumes <=32 MB), Media descriptor 0xf8, sectors/FAT 40, sectors/ track 32, heads 64, serial number 0xf2af2664, label: "EFI ", FAT (16 bit)
Linux file system: If the output describes file system data, the partition is a Linux file system. Example output:
/dev/sdb3: SGI XFS filesystem data (blksz 4096, inosz 512, v2 dirs)
Note the partition name of the Linux file system.
Create a mount point at
/rescue
:sudo mkdir /rescue
Mount the Linux file system partition to
/rescue
:sudo mount PARTITION_NAME /rescue
Replace PARTITION_NAME with the name of the Linux file system you previously noted.
If you want to modify the root directory of the file system using the
chroot
command, you must additionally mount the virtual file system and devices by running the following commands:sudo mount -t proc /proc /rescue/proc sudo mount -t sysfs /sys /rescue/sys sudo mount -o bind /dev /rescue/dev sudo mount -o bind /dev/pts /rescue/dev/pts sudo mount -o bind /run /rescue/run
The inaccessible boot disk's file system is now mounted at
/rescue
. You can navigate the file system, change config files, fix issues or retrieve the data.
Revert the changes and boot the inaccessible VM back
After the issue is fixed or data is retrieved, you need to bring back the actual VM. Use the following steps to restore the original VM:
Unmount the additional disk which is mounted at
/rescue
in the temporary VM:cd ~ sudo umount /rescue
In the Google Cloud console, go to the VM instances page.
Select the temporary VM that you created.
Click
Edit.Under Additional disks, click
for the disk created in earlier steps to detach the additional disk from the temporary VM.Click Save.
Go to the VM instances page in the Google Cloud console.
If the inaccessible VM is still running, stop the VM.
Click the name of the VM you just stopped, and then click
Edit.Under Boot disk, click
Detach book disk to detach the exiting boot disk from the inaccessible VM.Next, click Rescue a VM on this page.
CONFIGURE BOOT DISK to attach the disk you created and fixed previously in- In the Boot Disk section, click the Existing disks tab.
- In the drop-down list, select the disk that you created in the previous
section, for example
my-recovery-disk
. - Click Select and then click Save.
You should now be able to connect to the VM using SSH.