HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Itanium error 55, uuid
Operating System - HP-UX
1833701
Members
3332
Online
110062
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
07-16-2002 05:26 AM
07-16-2002 05:26 AM
Itanium error 55, uuid
I just set this machine up out of the box. When I boot, I get:
Error[55] UUID error
Any idea what this means or how to fix it?
Error[55] UUID error
Any idea what this means or how to fix it?
- Tags:
- UUID
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 05:53 AM
07-16-2002 05:53 AM
Re: Itanium error 55, uuid
Hi Tim,
UUID is Universal Unique ID. Used by DCE & NCS - specifically by the lb (Location Broker).
Can also mean Unique User ID & telnetd would user it if started out of inetd with -t.
See if you can get up in single-user mode & check the telnet line in inetd.conf.
Also if you're not going to be running NCS daemons, then check the /etc/rc.config.d/ncs & set the start_llbd & start_glbd params to 0.
I believe that the SharedPrint/UX SW also uses the Location Broker.
HTH,
Jeff
UUID is Universal Unique ID. Used by DCE & NCS - specifically by the lb (Location Broker).
Can also mean Unique User ID & telnetd would user it if started out of inetd with -t.
See if you can get up in single-user mode & check the telnet line in inetd.conf.
Also if you're not going to be running NCS daemons, then check the /etc/rc.config.d/ncs & set the start_llbd & start_glbd params to 0.
I believe that the SharedPrint/UX SW also uses the Location Broker.
HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 06:21 AM
07-16-2002 06:21 AM
Re: Itanium error 55, uuid
Thanks for the reply Jeff.
I get this error before the hp-ux bootloader, so it doesn't seem like it would be any of the inetd services. I would be able to troubleshoot this further, but it's itanium and thus, very different. The only thing I'm able to use is the EFI shell. Would you know a way to resolve this through that shell?
I get this error before the hp-ux bootloader, so it doesn't seem like it would be any of the inetd services. I would be able to troubleshoot this further, but it's itanium and thus, very different. The only thing I'm able to use is the EFI shell. Would you know a way to resolve this through that shell?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 06:33 AM
07-16-2002 06:33 AM
Re: Itanium error 55, uuid
Hi Tim,
Found this in case you're running RedHat on this Itanium.
\Quote
Modifying /etc/fstab to Avoid Hangs with mount, umount, and fsck
RedHat installations by default use the label feature for specifying the mount device using the keyword LABEL= or UUID= in the /etc/fstab file. This usage can create hangs when running the mount, umount, and fsck commands, which are used in package control scripts. To see whether you are exposed to this hang problem, edit /etc/fstab and search for any lines starting with LABEL= or UUID=.
In the /etc/fstab file, the first field specifies the device that will be mounted at the mountpoint specified in the same entry. If your file contains entries in the first field that use the LABEL= or UUID= keywork, you need to change the entries to use actual device file names.
The following entry illustrates the problem:
LABEL=/xyz /xyz ext2 defaults 1 1In this case the entry "LABEL=/xyz" is used instead of a device file name, so you need to replace it with the actual device file name. Use the following procedure:
First, verify that the filesystem is already mounted at /xyz. You can do this using the following command:
# df | grep "xyz"
If the output shows a line like the following, then the file system is already mounted.
/dev/sda7 132207 14548 110833 12% /xyzIf this kind of line does not appear, you need to mount the file system, as in the following:
# mount /xyz
After mounting the filesystem, issue the "df | grep xyz" command again and this should give you the same output that was shown before:
/dev/sda7 132207 14548 110833 12% /xyzThe first field on this line is the device file name, in this case "/dev/sda7".
Replace "LABEL=/xyz" with "/dev/sda7" in /etc/fstab. The rest of the fields on the same line need not be touched.
Do the same for every such line in /etc/fstab that uses LABEL= or UUID= keywords.
Note that the system does not need to be rebooted after editing /etc/fstab.
Whenever you create file systems, check the /etc/fstab to make sure that the entries do not use labels. If they do, use the above procedure to change them.
URL for the following:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/linux/onlinedocs/B9903-90006/B9903-90006_top.html&con=/linux/onlinedocs/B9903-90006/00/00/10-con.html&toc=/linux/onlinedocs/B9903-90006/00/00/10-toc.html&searchterms=errors%7cUUID&queryid=20020716-073737
HTH,
Jeff
Found this in case you're running RedHat on this Itanium.
\Quote
Modifying /etc/fstab to Avoid Hangs with mount, umount, and fsck
RedHat installations by default use the label feature for specifying the mount device using the keyword LABEL= or UUID= in the /etc/fstab file. This usage can create hangs when running the mount, umount, and fsck commands, which are used in package control scripts. To see whether you are exposed to this hang problem, edit /etc/fstab and search for any lines starting with LABEL= or UUID=.
In the /etc/fstab file, the first field specifies the device that will be mounted at the mountpoint specified in the same entry. If your file contains entries in the first field that use the LABEL= or UUID= keywork, you need to change the entries to use actual device file names.
The following entry illustrates the problem:
LABEL=/xyz /xyz ext2 defaults 1 1In this case the entry "LABEL=/xyz" is used instead of a device file name, so you need to replace it with the actual device file name. Use the following procedure:
First, verify that the filesystem is already mounted at /xyz. You can do this using the following command:
# df | grep "xyz"
If the output shows a line like the following, then the file system is already mounted.
/dev/sda7 132207 14548 110833 12% /xyzIf this kind of line does not appear, you need to mount the file system, as in the following:
# mount /xyz
After mounting the filesystem, issue the "df | grep xyz" command again and this should give you the same output that was shown before:
/dev/sda7 132207 14548 110833 12% /xyzThe first field on this line is the device file name, in this case "/dev/sda7".
Replace "LABEL=/xyz" with "/dev/sda7" in /etc/fstab. The rest of the fields on the same line need not be touched.
Do the same for every such line in /etc/fstab that uses LABEL= or UUID= keywords.
Note that the system does not need to be rebooted after editing /etc/fstab.
Whenever you create file systems, check the /etc/fstab to make sure that the entries do not use labels. If they do, use the above procedure to change them.
URL for the following:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/linux/onlinedocs/B9903-90006/B9903-90006_top.html&con=/linux/onlinedocs/B9903-90006/00/00/10-con.html&toc=/linux/onlinedocs/B9903-90006/00/00/10-toc.html&searchterms=errors%7cUUID&queryid=20020716-073737
HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP