When the firmware is updating, the storage will reboot itself and the browser UI may reload/log out. And the firmware will take about 45 mins to update. There are times that, it may look the storage is not responding. Is the Management UI not able to log in? Before you reboot, can you try login using the Service account to check the logs to see if there are any errors: https://dell.to/4eD6oGQ
If it's already been a day, you can probably reboot the storage manually. Ref: https://dell.to/4eFOLGj
DELL-Joey C
Social Media and Communities Professional
Dell Technologies | Enterprise Support Services
#IWork4Dell
Did I answer your query? Please click on ‘Mark as Accepted Answer’ if I did.
def int_to_roman(num): roman_map = { 1000: "M", 900: "CM", 500: "D", 400: "CD", 100: "C", 90: "XC", 50: "L", 40: "XL", 10: "X", 9: "IX", 5: "V", 4: "IV", 1: "I" } result = "" for value, symbol in roman_map.items(): while num >= value: result += symbol num -= value return result
def roman_to_int(roman): roman_map = { "I": 1, "V": 5, "X": 10, "L": 50, "C": 100, "D": 500, "M": 1000 } total = 0 prev_value = 0 for char in roman: current_value = roman_map[char] if current_value > prev_value: total += current_value - 2 * prev_value else: total += current_value prev_value = current_value return total
Facing issues with the ML3 firmware update? Double-check that you’re using the correct firmware version for your device. Ensure the update process isn’t interrupted and try using a different USB cable or port if applicable. If the issue persists, 10.0.0.0.1 – 10.0.0.1 performing a factory reset before the update might help. Let us know how it goes
Updating the ML3 firmware can sometimes encounter problems due to compatibility, connection, or power issues. Common causes include using the wrong firmware version, unstable USB or network connections, insufficient battery or power interruptions, or corrupted update files. To resolve the issue, users should ensure they have downloaded the correct firmware for their specific device model, follow the official update procedure carefully, maintain a stable connection, and avoid interrupting the process.
DELL-Charles R
Moderator
•
4730 Posts
•
25476 Points
0
0
Posted November 21st, 2024 21:47
Hello,
I want to ask a few questions first:
Was the update actually run before this occurred?
Did you try Login on the 'Admin Logout' do you still want to log in screenshot?
Have you power cycled the system?
DELL-Charles R
Social Media and Communities Professional
Dell Technologies | Enterprise Support Services
#IWork4Dell
Did I answer your query? Please click on ‘Accept as Solution’. ‘Thumbs up’ the posts you like!