You experience the following symptom when attempting to access the appliance via SSH or the console:
Permission denied, please try again.
Lifecycle manager 8.18.0
Drive space is full. Storage exhaustion (ENOSPC) on the root (/) or /var/log partitions directly disrupts Pluggable Authentication Module (PAM) routines and the SSH daemon (sshd).
If the system cannot write session tokens, audit records, or authentication logs, it forcefully rejects SSH connections with the "Permission denied" error. Furthermore, if the disk is at 100% capacity during an initial password reset attempt, the write operation to /etc/shadow fails silently, meaning the new password hash is never committed to disk.
1. Gain Emergency Console Access
rw init=/bin/bash to the boot line, and press F10 to force a root shell.2. Validate Capacity
df -h/ or /var/log partitions showing 100% usage.3. Reclaim Space Safely
find /var/log -type f -size +50M -exec ls -lh {} \;rm command on an actively written log file leaves an orphaned file handle holding the disk space in memory until the service is restarted. Truncate the file using:truncate -s 0 /var/log/<target_file>.logjournalctl --vacuum-size=100M4. Reapply the Password Hash
passwd root5. Restore Services
init=/bin/bash method, reboot the appliance to restore normal operations.