- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Add kernel parameter
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
07-23-2005 09:26 AM
07-23-2005 09:26 AM
How can I add a kernel parameter that currently does not exist?
This "new" parameter is required by Oracle Application Server 10g R1 (9.0.4.0):
tcp_conn_request_max = 2048
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2005 09:51 AM
07-23-2005 09:51 AM
Re: Add kernel parameter
The tcp_conn_request_max parameter can only be set using the network tuning command ndd. If you want to set this value manually to 2048 run the following command:
/usr/bin/ndd -set /dev/tcp tcp_conn_request_max 2048
If you want to check the values then run the command:
/usr/bin/ndd -get /dev/tcp tcp_conn_request_max
thanks
DP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2005 09:56 AM
07-23-2005 09:56 AM
SolutionI agree with the post above as you can not add kernel parameter & this infact is a ndd parameter. Apart from setting these like this manually put a entry in /etc/rc.config.d/nddconf file so that it is set at every reboot as well.
Regards,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2005 10:00 AM
07-23-2005 10:00 AM
Re: Add kernel parameter
the demonstration that Devesh and Devender are right is by
ndd -h tcp_conn_request_max
It explains what this parameter does.
You can set it by ndd commands like other people already posted. It is not a kernel parameter.
HTH.
Best regards,
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2005 01:09 PM
07-23-2005 01:09 PM
Re: Add kernel parameter
You should make entry in /etc/rc.config.d/nddconf. The file should like as follows.
TRANSPORT_NAME[0]=tcp
NDD_NAME[0]=tcp_conn_request_max
NDD_VALUE[0]=2048
Regards,
Babu