- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- process quota exceed on child process
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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-21-2007 10:46 PM
тАО05-21-2007 10:46 PM
thanks
Paul
Epic::Cache->get_databases_cstat() returned no data or unexpected data while querying Cache instance SPG. Please investigate immediately.
This is likely because the cstat file at ($1$DGA800:[EPIC.SPG.CACHESYS].bin]cstat) is not executable.
--------------------------------------------------------------------------------
This is the raw data that was returned from Cache:
%DCL-W-ACTIMAGE, error activating image $1$DGA800:[EPIC.SPG.CACHESYS.BIN]CSTAT
-CLI-E-IMGNAME, image file $1$DGA800:[EPIC.SPG.CACHESYS.BIN]CSTAT.EXE;1
-SYSTEM-F-EXQUOTA, process quota exceeded
$data = {
'TIMESTAMP' => '1179829468'
};
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2007 12:46 AM
тАО05-22-2007 12:46 AM
Re: process quota exceed on child process
How did you activate the process and what did it execute ?
If you do run /input without usage of loginout, the values are derived from pql_d* in sysgen.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2007 01:01 AM
тАО05-22-2007 01:01 AM
Re: process quota exceed on child process
How did you activate the process and what did it execute ?
perl [.bin]scheduler.pl -j
If you do run /input without usage of loginout, the values are derived from pql_d* in sysgen.
we have this line which our support person wants us to add in qualifiers for quotas...
print PIPE "RUN/DETACH SYS\$SYSTEM:LOGINOUT.EXE /INPUT=$com_file/OUTPUT=NLA0:/PROCESS=\"$process_name\"";
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2007 02:17 AM
тАО05-22-2007 02:17 AM
Re: process quota exceed on child process
they go left to right... 1-6
PQL_DWSDEFAULT
10064 10336 35424 35424 35424 35600
internal value
629 646 2214 2214 2214 2225
PQL_DWSQUOTA
20128 20672 70848 70848 70848 71200
internal value
1258 1292 4428 4428 4428 4450
PQL_DWSEXTENT
817152 1091584 1595392 1595392 1595392 1763328
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2007 02:46 AM
тАО05-22-2007 02:46 AM
Solution"we have this line which our support person wants us to add in qualifiers for quotas... "
-> is this the command actually used or a drweam of the support operson ?
If it is, add /page_file=1000000 to the RUN command.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2007 03:21 AM
тАО05-22-2007 03:21 AM
Re: process quota exceed on child process
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2007 03:43 PM
тАО05-22-2007 03:43 PM
Re: process quota exceed on child process
> RUN/DETACH SYS\$SYSTEM:LOGINOUT.EXE
This is NOT a "child" process, it's a DETACHED process (that's what you asked for). Detached processes get their quotas from PQL_Dxxx, which are typically very low - often too low to do anything useful.
You can specify individual quotas with qualifiers (see HELP RUN process). Try:
$ SEARCH SYS$STARTUP:*.COM "/DETACHED" /WINDOW=20
to find examples of fully populated RUN/DETACHED commands.
Special case... since you're running LOGINOUT.EXE you can specify /AUTHORIZE to request your UAF quotas.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 01:06 AM
тАО05-23-2007 01:06 AM
Re: process quota exceed on child process
thanks
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2007 09:52 AM
тАО05-23-2007 09:52 AM
Re: process quota exceed on child process
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2007 04:10 PM
тАО05-27-2007 04:10 PM
Re: process quota exceed on child process
>if I wanted to change the sysgen params is
>it doable with the memory config I have?
Although you could change the SYSGEN parameters, that's probably the worst possible solution for type of issue, for several reasons.
First, you're setting system wide parameters to suit a single process. If you have more than one such process, how do you resolve any conflicts?
Second, and more important, you create an application dependence on SYSGEN parameters. The result is invariably that if you ever move the application to another system, it will fail, and someone else wastes time diagnosing the failure. (I've seen this scenario many times) It's always MUCH better to build any dependencies into the application itself.
As a general rule, I strongly recommend against setting any PQL_D* SYSGEN parameters to anything other than their default values.