- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX11 Phisical memory not fully used
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
09-03-2001 07:37 AM
09-03-2001 07:37 AM
HP-UX11 Phisical memory not fully used
Could be possible that the system is using half phisical memory for each of the two processor?
Regards
Roberto Pavani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 07:50 AM
09-03-2001 07:50 AM
Re: HP-UX11 Phisical memory not fully used
Check out the kernel parameter
swapmem_on
kmtune -l -q swapmem_on
swapmem_on enables or disables the reservation of pseudo-swap, which is space in system memory considered as available virtual memory space in addition to device swap space on disk. By default, pseudo-swap is enabled(1)
Also check dbc_max_pct
(kmtune -l -q dbc_max_pct_
For more information about the kernel parameters, check out the link
http://docs.hp.com/hpux/onlinedocs/os/11i/kcparams/KCparams.OverviewAll.html
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 09:55 AM
09-03-2001 09:55 AM
Re: HP-UX11 Phisical memory not fully used
I am not sure if there is a single configurable parameter to make an application use only half of the ram.
I think what's happening is due to setting of different parameters. I suggest that you compare the kernel setting of the two machines to check where the big difference lies. The kernel parameters to check are
1) nfiles
2) nkthread
3) maxthread_proc
4) maxfiles and maxfiles_lim
5) maxdsiz
6) dbc_max_pct
7) semmni
8) nproc
9) shmmax
All the best....
...BPK...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 10:04 AM
09-03-2001 10:04 AM
Re: HP-UX11 Phisical memory not fully used
Unless you are using Process Resource Management (PRM), it's not possible to adjust the system usage per process basis.
You also need to be little bit more specific on how your process works. Are there any inputs to the process?. Process resource utilization varies depending on it's load.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 11:50 AM
09-03-2001 11:50 AM
Re: HP-UX11 Phisical memory not fully used
if your system is only using up that few cpu-cycles, it
seems to just not need all that RAM...
Does your application really do the same calculation
as on the other machine?
The other point would be to check your swap space:
swapinfo -t
Doe you have another GB of swap space free?
Or do you have a line starting with "memory" in the
output of that command?
Having not enough virtual memory (read: swap space)
would actually make it impossible to use more RAM...
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 05:57 PM
09-03-2001 05:57 PM
Re: HP-UX11 Phisical memory not fully used
The problem is, if this process used 1.9 GB of memory on your 4GB system then trying to run the same thing on a 2 GB machine is asking for trouble. You will NEVER have then entire amount of memory that you have installed on a system available because normal system processes, buffer cache, etc. will use some amount.
Setting your buffer cache down on the 2GB machine will help, but your best bet would be to install another 2GB or so of RAM to really get the performance you require.