- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- redht 7.2 increase shared memory
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
тАО03-08-2004 09:27 PM
тАО03-08-2004 09:27 PM
I'm in an education class and need a quick answer. Were using tuxedo 6.2 with redhat 7.2. I need to double the shared memory parmaters within my kernel.
Whats the quickest way to do this
Thanks in advance
Steve
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2004 09:37 PM
тАО03-08-2004 09:37 PM
Solutionparameters shmmax and shmall, it can be changed while the system is running
with a command like
echo "67108864" >/proc/sys/kernel/shmmax
echo "67108864" >/proc/sys/kernel/shmall
Increasing the size of the Linux shared memory segment
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2004 09:37 PM
тАО03-08-2004 09:37 PM
Re: redht 7.2 increase shared memory
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2004 09:38 PM
тАО03-08-2004 09:38 PM
Re: redht 7.2 increase shared memory
/proc/sys/kernel/shmall
/proc/sys/kernel/shmmax
/proc/sys/kernel/shmmni
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2004 11:34 PM
тАО03-08-2004 11:34 PM
Re: redht 7.2 increase shared memory
Checking kernel type
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-08-2004 11:55 PM
тАО03-08-2004 11:55 PM
Re: redht 7.2 increase shared memory
The penny dropped !
/etc/sysctl.conf
Add new value
kernel.shmax=
Then
sysctl -p
Where are the system default values held though ?
Cheers
Ste
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-09-2004 12:55 AM
тАО03-09-2004 12:55 AM
Re: redht 7.2 increase shared memory
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-09-2004 01:08 AM
тАО03-09-2004 01:08 AM
Re: redht 7.2 increase shared memory
http://ps-ax.com/shared-mem.html
Pls 0 here (should have precised this in former post)
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-09-2004 03:29 PM
тАО03-09-2004 03:29 PM
Re: redht 7.2 increase shared memory
The 'echo' commands that were given are the equivalent of using the sysctl, only one has a neater interface ;)
'sysctl' (if you wade through the man page) just allows a config-file-based interface to the '/proc/sys/' structure. Replace /'s with .'s, and you've got your paths.
unf. ;)