- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus Enterprise
- >
- Morpheus UI Unreachable(404 not found)
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2023 10:47 PM
11-19-2023 10:47 PM
Morpheus UI Unreachable(404 not found)
Hello team
We have got a morpheus single node installation in place. All the services are running fine but we are unable to see the UI.
- Tags:
- UI

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2023 03:21 AM
11-20-2023 03:21 AM
Re: Morpheus UI Unreachable(404 not found)
Hi @srisharaan,
If you’re still facing this issue, please raise a case via the support portal so that we can help you .
If you could attach some logs to the case, that would be great. Information on how to gather the relevant information can be found here:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a week ago - last edited a week ago
a week ago - last edited a week ago
Re: Morpheus UI Unreachable(404 not found)
Hi,
Try to Connect to mysql db using "mysql -u morpheus -p -h 127.0.0.1 <db_name>". It will prompt for password which can be extracted from: "head /opt/morpheus/conf/application.yml"
Once connected to mysql, search for changelock database, it may be named something like:
=============================
DATABASECHANGELOGLOCK
db_changelog_lock
=============================
MySQL [morpheus]> SHOW TABLES LIKE '%LOCK%';
+-----------------------------+
| Tables_in_morpheus (%LOCK%) |
+-----------------------------+
| DATABASECHANGELOGLOCK |
MySQL [morpheus]> SELECT * FROM DATABASECHANGELOGLOCK;
MySQL [morpheus]> UPDATE DATABASECHANGELOGLOCK
-> SET LOCKED = 0,
-> LOCKGRANTED = NULL,
-> LOCKEDBY = NULL
-> WHERE ID = 1;
Query OK, 1 row affected (0.008 sec)
Rows matched: 1 Changed: 1 Warnings: 0
MySQL [morpheus]> EXIT;
Execute tail -f /var/log/morpheus/morpheus-ui/current and then restart Morpheus-UI
# morpheus-ctl restart morpheus-ui
Keep looking at the logs and wait until you see "Morpheus" logo.
2025-08-13_08:19:06.41270 ' __ ___ __
2025-08-13_08:19:07.54452 / |/ /__ _______ / / ___ __ _____
2025-08-13_08:19:07.54469 / /|_/ / _ \/ __/ _ \/ _ \/ -_) // (_-<
2025-08-13_08:19:07.54477 /_/ /_/\___/_/ / .__/_//_/\__/\_,_/___/
2025-08-13_08:19:07.54486 ****************************************
2025-08-13_08:19:07.54496 Version: 8.0.8
2025-08-13_08:19:07.54552 Start Time: Wed Aug 13 08:19:07 UTC 2025
Now, try to access the UI on web browser, it should be fixed by now.
Thanks.