- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- What is the maximum memory per 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
тАО02-01-2011 02:12 AM
тАО02-01-2011 02:12 AM
What is the maximum memory per process
What is the maximum memory per process that
we can have in Red Hat Linux. In HP-UX we can control process size with maxdsiz,maxdsiz_64bit, maxssiz, maxssiz_64bit.
How can we control Process memory utilization in Linux. Please help.
Note: We are using RHEL 5.3,5.4,5.5
Thanks
Minhaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2011 07:02 AM
тАО02-01-2011 07:02 AM
Re: What is the maximum memory per process
64bit processes way way more than your RAM
The above HP-UX kernel parms are non-existent on RHEL 5. Instead, each user or globaly can be set limits to data. segment and stack memory in /etc/security/limits.conf
man limits.conf(5)
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2011 07:18 AM
тАО02-01-2011 07:18 AM
Re: What is the maximum memory per process
maxdsiz* = data segment size limit
maxssiz* = stack size limit
In HP-UX, there are separate limits for 32- and 64-bit programs. In Linux, both types of programs use the same limits.
In RedHat Enterprise Linux, the ulimit values can be configured using /etc/security/limits.conf. The file includes comments that describe the file format, and some examples. You can specify different limits for different users or user groups, if you wish.
You can view the current limits in Linux with:
ulimit -a -H
In Linux, the default limits are "unlimited" (i.e. limited only by the amount of available memory & swap space).
For more information, see "man limits.conf".
When you change the limit definitions, only new sessions started after the change will get the new limits; any existing sessions will still have the old limits.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-02-2011 02:17 AM
тАО02-02-2011 02:17 AM
Re: What is the maximum memory per process
Thanks a lot for your help. I have read "man limits.conf" & what i understood is, if we give below entry for user "minhaz" then is it maximum limit for per-process physical memory consumption under "minhaz" user or all processes that run under "minhaz" can not exceed the limit 128 MB:
/etc/security/limits.conf
=========================
minhaz hard as 131072
Thanks
Minhaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-02-2011 07:15 AM
тАО02-02-2011 07:15 AM
Re: What is the maximum memory per process
Si. Exactamente