- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- declarable services ?
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-29-2007 08:00 AM
03-29-2007 08:00 AM
I've done a few searches and can't find out what she means by the term 'declarable services'. An excerpt from her e-mail reads: "before TBIRD next gets a reboot the amount of declarable services needs to be upped. I've been running our cross-networking testing and could not get a detached PDM on TBIRD to allow communication with ARCHER for testing from the ARCHER side."
Any clues as to what she is talking about ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2007 08:19 AM
03-29-2007 08:19 AM
Re: declarable services ?
WAG:
a) Number of connections for TCPIP, See TCPIP HELP SET SERVICE /LIMIT
b) Number of LAT ports, possibly assigned to an application
c) Number of users licensed to a third party application
Suggestion, get more details and a description of the tools, behavior and history.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2007 08:31 AM
03-29-2007 08:31 AM
Re: declarable services ?
docs, if that's what the requester is seeking to use here. Maybe MAXTASKS? Or you could ask the requester for additional information, as the question certainly looks to involve software other than OpenVMS and as yet unidentified.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2007 10:54 PM
03-29-2007 10:54 PM
Re: declarable services ?
I presume from context that TBIRD and ARCHER are nodes.
I agree with Hoff, the quoted excerpt from the email is not sufficient.
The term "insufficient services" could mean TCP limits, but it could also mean a configuration item specific to a piece of not yet identified applications software (not integral to OpenVMS). It could also refer to an issue with the account being used for the operation; or an operation that is not allowed by your security configuration.
More detail is needed (either publicly or privately).
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 01:10 AM
03-30-2007 01:10 AM
Re: declarable services ?
This is not urgent but I thought you should know that before TBIRD next gets a reboot the amount of declarable services needs to be upped. I've been running our cross-networking testing and could not get a detached PDM on TBIRD to allow communication with ARCHER for testing from the ARCHER side. TBIRD can go to ARCHER with no problems. We are right at the declared limit for services. Luckily one was up that I knew I could kill as it was from my testing for the SUPRA RAK that I was asked to do on VMS. Once I set that to noservice. With the addition work that hubdriver and the SUPRA RAK people are doing we probably need to up the number allowed by about 5 more to give us all a little breathing room.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 01:26 AM
03-30-2007 01:26 AM
Re: declarable services ?
I concur with checking the docset for Cincom.
The context of this request is unclear at to me at the present time.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 02:04 AM
03-30-2007 02:04 AM
Re: declarable services ?
Sorry about that ... our database declares itself a known object so that a remote connection (another server on a network) can access it. If it is not declared as a known object it can only service local tasks (on that same server only). TBRID has been getting maxed out lately and when I've run some of our tests I have been unable to correctly run the ones that cross the network between ARHCER and TBIRD because our TBIRD database was unable to declare itself a known object.
If it helps HP in our code the name is declared through the NFB declarations setup is like this:
nfbdesc.nfb->func_num = NFB$C_DECLNAME;
nfbdesc.nfb->object_num = 0; /* No object number. */
nfbdesc.length = 5;
network_name.address = &network_name_str;
If the amount of know object allocations are taken up the SYS$QIOW call using this info will fail and we cannot use cross network communications.
status = SYS$QIOW(0, /* No Event flag. */
p_tvt->tvtdclchn, /* Device channel. */
IO$_ACPCONTROL, /* Ass name to task. */
&iosb, /* I/O Status Block. */
0, /* No Ast Address */
0, /* No Ast parameters */
&nfbdesc, /* p1=Network func desc */
&network_name, /* p2=Network name desc */
0,0,0,0); /* p3,p4,p5,p6 */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 04:07 AM
03-30-2007 04:07 AM
Re: declarable services ?
Okay, that seems to imply that you are dealing with DECnet processes. You can be running into a variety of limits.
Most of these limits are not related to the system as a whole. Some of them are related to the individual user account being used by the network processes.
Check your logs and check the accounts being used by the server processes, as a start.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 04:23 AM
03-30-2007 04:23 AM
Re: declarable services ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 04:37 AM
03-30-2007 04:37 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2007 04:48 AM
03-30-2007 04:48 AM
Re: declarable services ?
I found the Max Declared Obj was 31....
I've increase it to 41 using your recomendations....