- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: ACMS - DIBOL Program throws 33 in Development
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-04-2009 07:52 AM
11-04-2009 07:52 AM
A DIBOL Program executable run successfully at production and not in development. This DIBOL program gets invoked thru ACMS. In development it throws 33 too many channels open run time error. But the program contains only 90 channels which is < max 255 limit.
I have verified the "UAF> Show Username" against an existing production account.
My current account settings are.....
Maxjobs: 0 Fillm: 400 Bytlm: 1000000
Maxacctjobs: 0 Shrfillm: 0 Pbytlm: 0
Maxdetach: 0 BIOlm: 120 JTquota: 15000
Prclm: 8 DIOlm: 120 WSdef: 15000
Prio: 4 ASTlm: 150 WSquo: 16384
Queprio: 4 TQElm: 10 WSextent: 524288
CPU: (none) Enqlm: 2000 Pgflquo: 1000000
Whenever changes in UAF for the user, ACMS Stop and Start activities done. but still the same problem 33 - too many channels open...
Any sugeestion please......
Thanks
-VV
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 08:09 AM
11-04-2009 08:09 AM
Re: ACMS - DIBOL Program throws 33 in Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 11:30 AM
11-04-2009 11:30 AM
Re: ACMS - DIBOL Program throws 33 in Development
The program, if I remember correctly, was doing something like sending email using a distribution list. The problem was that the distribution list contained itself as an entry.
This caused a loop of some kind and caused the program to exceed the maximum number of channels open.
I'm not saying this is your problem, however it might get you thinking in the right direction.
HTH
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 12:42 PM
11-04-2009 12:42 PM
Re: ACMS - DIBOL Program throws 33 in Development
$ analyze/system
SDA> show proc/id=xxxxxxxx ! replace x's with PID
SDA> show proc/chan
SDA> exit
I too have observed and fixed programs that misbehave and bleed channels - one instance that comes to mind occurred when a program repeatedly trapped some unexpected condition and looped back around opening a channel to the same object while neglecting to close the original channel - repeat until channel exhaustion. fwiw...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2009 01:05 AM
11-05-2009 01:05 AM
Re: ACMS - DIBOL Program throws 33 in Development
Thanks for the different possible suggestion.
I have ensured that
A. CHANNELCNT - 16384 (SYS$SYSTEM:MODPARAMS.DAT)
B. the program is not falling under "Infinite Loop". and No Mail activities. The DIBOL Program does I/O Operation with 90 files.
C. Analyse/System - 16 channels open at the time of running the DIBOL Program thru ACMS.
I have added the following lines to list the number of channel open
Open (CHVVTEST, 'O', 'olw:CHtest.seq')
FOR TESTCHN FROM 1 THRU 250
IF (%CHOPEN(TESTCHN))
BEGIN
TESTCHN_A = TESTCHN
WRITES(CHVVTEST,TESTCHN_A)
END
It results the same 90 channels opened.
I am analysing the problem. Please share if you have any suggestion. Once i get a solution, I post it in the forum. Thanks you very much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2009 06:26 AM
11-05-2009 06:26 AM
Re: ACMS - DIBOL Program throws 33 in Development
A. CHANNELCNT - 16384 (SYS$SYSTEM:MODPARAMS.DAT)"
$ MCR SYSMAN PARAMETERS SHOW CHANNELCNT
?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2009 06:40 AM
11-05-2009 06:40 AM
Re: ACMS - DIBOL Program throws 33 in Development
$ MCR SYSMAN PARAMETERS SHOW CHANNELCNT
gives the below result...
Parameter Name Current Default Minimum Maximum Unit Dynamic
-------------- ------- ------- ------- ------- ---- -------
CHANNELCNT 16384 256 31 65535 Channels
Thanks.
-VV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2009 04:59 AM
11-06-2009 04:59 AM
Re: ACMS - DIBOL Program throws 33 in Development
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2009 03:37 PM
11-07-2009 03:37 PM
Re: ACMS - DIBOL Program throws 33 in Development
Do the server usernames have the same access to the directories/files on dev/test as they do in production? (UIC group SOGW ACLs etc)
Cheers Richard Maher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2009 09:06 AM
11-09-2009 09:06 AM
SolutionIt probably does not matter, but what versions are you using for Dibol, VMS, ACMS?
What is a typical full file name as provided? Logical name involved? Search list involved?
You mention 'username'. But with ACMS there are several usernames in play. The one that matters is probably the username used for the procedure server process. Is that the one you checked?
Is it possible for you to run your test in production? It is probably relevant to know whether the production box would fail with just a few more files open, or with many more open files (whatever the documented Dibol max is). If production fails with just a few more files, then the difference could be a extra library or message file being activated or not.
>> Analyse/System - 16 channels open at the time of running the DIBOL
That doesn't make much sense.. unless this is strictly a Dibol runtime event, and not a system resource issues.
Can you change the test program to go to sleep when there are 89 channels open and repeat the ANALYZE/SYS... SHOW PROC/CHANNEL?
Maybe you see non-file disk channels for each time the file is opened? That could be a mismanaged file context in LIB$FIND_FILE before getting to the open.
Hope this helps some,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2009 11:14 PM
11-09-2009 11:14 PM
Re: ACMS - DIBOL Program throws 33 in Development
Thanks for the direction.... I will update ASAP once i done with your suggestion.
Thanks
-VV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2009 04:21 AM
11-10-2009 04:21 AM
Re: ACMS - DIBOL Program throws 33 in Development
I doubt that it will be free.
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2009 06:56 AM
11-11-2009 06:56 AM
Re: ACMS - DIBOL Program throws 33 in Development
fwiw, I just happened to run into the DBLRTL zip file, but that only contains the run time messages:
! .BASE 33
CHNEXC /ERROR
DBL$_TOOMNYCHN = DBL$_CHNEXC
That suggests to me that this is NOT a system resource limit, but a Dibol run time library determined condition.
Of course it could still be a 'clever' mapping of an OpenVMS error onto the 'nearest' Dibol error, but I doubt it.
If you get it to run in an interactive environment, then SET WATCH FILE/CLA=MAJOR may give clues.
Cheers,
Hein
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2009 02:22 PM
11-16-2009 02:22 PM
Re: ACMS - DIBOL Program throws 33 in Development
I might suggest setting FILLM to 0 (unlimited) to see if this resolves the issue. This may not be the fix, but it might provide clues as to what the problem is.
Of course, itâ s all a guess unless you can actually run the program under debug.
If you would like further assistance we may be able to help.
It may be obvious, but if the same program runs in one account but not another then it has to be a difference between the accounts. Invoked through ACMS might be a key, is this their menu system?
I might suggest setting FILLM to 0 (unlimited) to see if this resolves the issue. This may not be the fix, but it might provide clues as to what the problem is.
Of course, itâ s all a guess unless you can actually run the program under debug..
It may be obvious, but if the same program runs in one account but not another then it has to be a difference between the accounts. Invoked through ACMS might be a key, is this their menu system?
I might suggest setting FILLM to 0 (unlimited) to see if this resolves the issue. This may not be the fix, but it might provide clues as to what the problem is.
Of course, itâ s all a guess unless you can actually run the program under debug..
SynergyDE Developer Support
support@synergex.com
Phone (USA): 1 (800) 366-3472
Phone (UK): 0800 898368
Other Countries: +1916 635-7300
Fax: +1 (916) 635-6549
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2009 07:20 PM
11-16-2009 07:20 PM
Re: ACMS - DIBOL Program throws 33 in Development
Indeed, and most replies have been leaning into that direction.
But there is a possibility that this error 033 does NOT directly reflect an OpenVMS resource issues, but rather a Dibol run time system detected condition, which in turn may or might not depend on process resources. Perhaps a failure to properly close files.
Beth, considering you signed with "SynergyDE Developer Support", maybe you can poke at the sources or have someone poke at the sources and help describe under what circumstances this error 33 is returned and where to find more information?!
- Is it mapped from an OpenVMS Error?
- Any specific ones, or just any failure to open a file?
- Is LIB$FIND_FILE used by the RTL and can a path be constructed where FIND_FILE_END is not called?
Thanks!
Hein.
CHNEXC /ERROR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2009 01:19 AM
11-19-2009 01:19 AM
Re: ACMS - DIBOL Program throws 33 in Development
Thank You Very Much for directing me in the Healthy Path. Sorry for the delay reply as I took more time to debug this very big program in both production(Quality) and development. The results confirmed that "No problem with program". Good Learning For Me :).
I have noted down mostly all the steps which i carried out (including your suggestions) with my user id. Finally I have reset my VAX/VMS user id and ACMS user id's UAF settings and also WINMGR_******* settings as same as original Post. Right now i am not getting 33 too many channels open problem with my id. I update forum Once I try the same with another user id for confirmation.
Thanks.
-VV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2009 02:16 PM
11-19-2009 02:16 PM
Re: ACMS - DIBOL Program throws 33 in Development
Any chance of seeing the actual commands and error messages? Is this in SWLUP or ACMSATR or A.N.OTHER?
I did DIBOL for a month or so once (20 odd years ago) and don't remember "throwing" JAVA-esque, is it lib$signalled/ lib$stopped?
Where is the magic "33" coming from exactly?
Cheers Richard Maher