- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Parameter list too Long
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
03-07-2003 12:22 AM
03-07-2003 12:22 AM
Parameter list too Long
kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 12:28 AM
03-07-2003 12:28 AM
Re: Parameter list too Long
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 12:33 AM
03-07-2003 12:33 AM
Re: Parameter list too Long
depends on the OS version.
which are you using.
see
http://bizforums.itrc.hp.com/cm/QuestionAnswer/1,,0x9e5fc1c4ceddd61190050090279cd0f9,00.html
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 12:35 AM
03-07-2003 12:35 AM
Re: Parameter list too Long
but your problem, seems like u are exceeding the maximum length of the command line argument passed on a shell.
hth
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 12:49 AM
03-07-2003 12:49 AM
Re: Parameter list too Long
kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 08:24 AM
03-07-2003 08:24 AM
Re: Parameter list too Long
From "man sysconf"
ARG_MAX _SC_ARG_MAX
Maximum total length of the arguments for exec() in bytes, including environment data (see exec(2))
From "man exec"
If exec*() fails and returns to the calling program,
errno is set to one of the following values:
[E2BIG]
The number of bytes in the new program's
argument list plus environment is greater
than the system-imposed limit. This limit is
at least 5120 bytes on HP-UX systems.
The limit on 11.00 and on patched 10.20 is 2000K bytes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 09:06 AM
03-07-2003 09:06 AM
Re: Parameter list too Long
#if defined(_INCLUDE_POSIX_SOURCE) || defined(_INCLUDE_POSIX2_SOURCE)
# define _POSIX_ARG_MAX 4096 /* The length of the arguments for
one of the exec functions in bytes,
including environment data. */
also...
# if defined(_XPG2) || defined(_SVID3) || defined(_XPG4_EXTENDED)
/*
* The following limits are not actually invariant, but are configurable.
* The correct values can be determined using the sysconf() function.
* The default values are provided here because the constants are specified
* by several publications including XPG (X/Open Portability Guide) Issue 2
* and SVID (System V Interface Definition) Issue 2.
*/
# define ARG_MAX 2048000 /* Maximum length of arguments for the
exec function in bytes, including
environment data */