- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- increase global sections
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
тАО02-01-2006 02:05 AM
тАО02-01-2006 02:05 AM
For new s/w 190 global sections are required, but:
$write sys$output f$getsyi("free_gblsects")
163
I have modified modparams.dat:
MIN_GBLSECTIONS = 1200 (was 625)
After that I ran Autogen:
$@SYS$UPDATE:AUTOGEN GETDATA SETPARAMS
After a reboot, the free global sections were still 163. Why didn't this number increase?
Thanks in advance. Greetings, Sjors
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 02:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 02:16 AM
тАО02-01-2006 02:16 AM
Re: increase global sections
You only show what is free - not how many sections are SYSGENed. It is probable that the actual number of global sections was/is greater than 1200.
You'll want to get the current GBLSECTIONS value
$ write sys$output f$gets("gblsections")
and then increase your MIN_GBLSECTIONS value above that number.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 02:20 AM
тАО02-01-2006 02:20 AM
Re: increase global sections
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 02:23 AM
тАО02-01-2006 02:23 AM
Re: increase global sections
$ G = F$GETSYI( "GBLPAGES")
$ GF = F$GETSYI( "FREE_GBLPAGES")
$ GC = F$GETSYI( "CONTIG_GBLPAGES")
$ WRITE SYS$OUTPUT -
" Global pages: ''g', free: ''gf', contiguous: ''gc'."
$ G = F$GETSYI( "GBLSECTIONS")
$ GF = F$GETSYI( "FREE_GBLSECTS")
$ WRITE SYS$OUTPUT -
" Global sections: ''g', free: ''gf'."
ALP $ @ gbl.com
Global pages: 3679322, free: 3248256, contiguous: 3232992.
Global sections: 1350, free: 258.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 03:27 AM
тАО02-01-2006 03:27 AM
Re: increase global sections
You might download SHOW_NODE_INFO.COM from
http://dcl.openvms.org/stories.php?story=05/04/04/7482362
There is a section of information about global pages and global sections that is part of the output.
Robert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 08:17 PM
тАО02-01-2006 08:17 PM
Re: increase global sections
Are you display file SYS$SYSTEM:AGEN$PARAMS.REPORT
to check some error message about MODPARAMS.DAT lines?
It is possible, if line refer to MIN_GBLSECTIONS is EXACTLY
MIN_GBLSECTIONS = 1200 (was 625)
that AUTOGEN has detected an error.
Line will be:
MIN_GBLSECTIONS = 1200 ! (was 625)
(See comment ! character)
Saludos.
Daniel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2006 09:06 PM
тАО02-01-2006 09:06 PM
Re: increase global sections
@SYS$UPDATE:AUTOGEN GENPARAMS SETPARAMS FEEDBACK
Did the job.
Greets, Sjors
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2006 01:09 PM
тАО02-06-2006 01:09 PM
Re: increase global sections
>For new s/w 190 global sections are required, but:
>
>$write sys$output f$getsyi("free_gblsects")
163
>
>I have modified modparams.dat:
>
>MIN_GBLSECTIONS = 1200 (was 625)
The intended way to deal with this situation is in MODPARAMS.DAT:
ADD_GBLSECTIONS = 190 ! For product "new s/w"
Hopefully, each product with a specific requirement for GBLSECTIONS will have its own line and comment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2006 01:32 PM
тАО02-06-2006 01:32 PM
Re: increase global sections
When changing system parameters and before rebooting use $ difference/parall to compare the before and after differences in parameters.
This very simple technique will save you.
Consider
+++
$ mc sysgen
use sys$system:alphavmssys.par !Real Version
set/output=users:[autogen]wiza_new_params.txt
show/all
show/special
!!!use sys$system:alphavmssys.old !Previous version
use users:[autogen]wiza_PARAMS_CURRENT.PAR
set/output=users:[sautogen]wiza_old_params.txt
show/all
show/special
exit
$
$differences/parallel/out=differences.lis wiza_new_params.txt wiza_old_params.txt
$type/p differences.lis
$exit
___
Also these days with gigabytes of RAM think big, but not too big. There is very little overhead in having some parameters configured generously.
We have not autogen our production cluster for over 2 years and work load has increased three fold ! Once you know your work mix and expected growth adjust
accordingly.
My AUS 2 cents.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2006 09:02 PM
тАО02-06-2006 09:02 PM
Re: increase global sections
$ sea sys$system:AGEN$PARAMS.REPORT; suspect
If the string "suspect" is found, this usually means that I have fat fingered a parameter, so my new value for gblsections will not be here, as I may have done a typo, such as
min_glbsections=1200
instead of
min_gblsections=1200
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2006 09:14 PM
тАО02-06-2006 09:14 PM
Re: increase global sections
$ DIFF/PAR SYS$SYSTEM:SETPARAMS.DAT
This way you can see every parameter changed during last Autogen
Further: Autogen searches for a procedure sys$update:agen$mail.com. If this procedure exists it will be executed by autogen.
I added
$ DIFF/PAR SYS$SYSTEM:SETPARAMS.DAT/out=sys$scratch:agen_diff.tmp
$ MAIL/SUBJECT="Autogen executed on ''F$GETSYI("NODENAME")'" sys$scratch:agen_diff.tmp 'mail_address'
to the procedure SYS$UPDATE:AGEN$MAIL.COM
This way I receive a Email with the differences after executing autogen.
Regards
Heinz