- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Run command vgdisplay found error
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
01-05-2011 07:49 PM
01-05-2011 07:49 PM
Run command vgdisplay found error
Run vgdisplay found error, how to deal with it?
Thanks!
# vgdisplay -v
exec(2): data exceeds user's limits
sh: /usr/sbin/vgdisplay: There is not enough memory available to run the command.
# ll /sbin/vgdisplay
-rwxr--r-- 32 root sys 2521004 Sep 20 18:15 /sbin/vgdisplay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 12:49 AM
01-06-2011 12:49 AM
Re: Run command vgdisplay found error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 02:24 AM
01-06-2011 02:24 AM
Re: Run command vgdisplay found error
exec(2): data exceeds user's limits
What HP-UX version do you have?
What do "ulimit -a" and "kctune | grep maxdsiz" show?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 02:28 AM
01-06-2011 02:28 AM
Re: Run command vgdisplay found error
sh: /usr/sbin/vgdisplay: There is not enough memory available to run the command.
# ll /sbin/vgdisplay
These are 2 different binaries, one in /sbin, the other in /usr/sbin
Try both, same result?
Try "file" or "what" on both.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2011 01:57 AM
01-07-2011 01:57 AM
Re: Run command vgdisplay found error
swapinfo -tam ( paste the output )
& dmesg | grep -i physical ( for RAM size )
usage can be checked using TOP & GLANCE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2011 04:25 AM
01-07-2011 04:25 AM
Re: Run command vgdisplay found error
Check your ulimit settings, I think that you are limited by ulimit.
# ulimit -a
Regards,
Viktor
Unix operates with beer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2011 02:04 AM
01-10-2011 02:04 AM
Re: Run command vgdisplay found error
Thanks for your reply,
and "ulimit" output as below, memory is unlimited, and run /usr/sbin/vgdisplay /sbin/vgdisplay is got the same error, who give some suggestiong?
# ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1024
stack(kbytes) 8192
memory(kbytes) unlimited
coredump(blocks) 4194307
nofiles(descriptors) 512
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2011 02:17 AM
01-10-2011 02:17 AM
Re: Run command vgdisplay found error
>data(kbytes) 1024
You can't have data at 1 Mb. You need to increase it to at least 1 Gb.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2011 03:41 AM
01-10-2011 03:41 AM
Re: Run command vgdisplay found error
This will set the data limit to 256MByte:
# ulimit -d 262144
Regards,
Viktor
Unix operates with beer.