To resolve this issue, correct the configuration in /etc/fstab by following the steps below:
- Launch an SSH client, such as PuTTY.
- Login to the primary Authentication Manager server as rsaadmin and enter the operating system password.
Note that during Quick Setup another user name may have been selected. Use that user name to login.
- Reboot the appliance through the command line.
- Enter Single User Mode using the steps in one of the following article according to your Authentication Manager version:
- Once you are booted into Single User Mode, mount the filesystem:
mount -o remount,rw /
- Take a backup of /etc/fstab:
cp /etc/fstab /etc/fstab.bak
- Open /etc/fstab using a text editor.
- Find the mount point the error message references:
tmpfs /run tmpfs noauto 0 0 /dev/systemVG/LVRoot / ext3 defaults 1 1 /dev/disk/by-id/scsi-36001e6788a5ef0001ae06e8b07057174-part1 /boot ext3 defaults 1 2 /dev/systemVG/LVSwap swap swap defaults 0 0
- Press i to enter Insert mode.
- Change the entry to use the disk name instead of disk id:
tmpfs /run tmpfs noauto 0 0 /dev/systemVG/LVRoot / ext3 defaults 1 1 /dev/sda1 /boot ext3 defaults 1 2 /dev/systemVG/LVSwap swap swap defaults 0 0
- Press Esc to exit Insert mode.
- Type :wq! and press Enter to save and exit.
- Reboot using one of the following commands:
/sbin/reboot /sbin/init 6 exec /sbin/init 6
|