- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 64 bit Vs 32 bit Application
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
08-18-2005 09:44 PM
08-18-2005 09:44 PM
I have deployed OpenSSH 4.0 which is a 32 bit application on a production server (11i Box).
Our requirement is that it should serve more than 600 concurrent ssh connections, but sshd fails to do so when it receives more connections. Will 64 bit SSHD help in this situation.
What are the advantages and disadvantages of 64 bit over 32 bit applications?
Please share your thoughts.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 10:36 PM
08-18-2005 10:36 PM
Re: 64 bit Vs 32 bit Application
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 10:43 PM
08-18-2005 10:43 PM
Re: 64 bit Vs 32 bit Application
-higher performance
-increased system capacity parameters
-reduced swapping
64-bit integers, for
instance, provide the ability to operate on larger numbers in a single operation, improving performance for operations such as encryption, data copy, graphics, and large multimedia processes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 11:02 PM
08-18-2005 11:02 PM
Re: 64 bit Vs 32 bit Application
Post the output of:
#dmesg
and do
# sar -v 5 10
when the system stops accepting connections and post the ouput.
Enjoy :)
Pedro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2005 12:37 AM
08-19-2005 12:37 AM
Re: 64 bit Vs 32 bit Application
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2005 12:48 AM
08-19-2005 12:48 AM
Re: 64 bit Vs 32 bit Application
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2005 01:36 AM
08-19-2005 01:36 AM
Re: 64 bit Vs 32 bit Application
Also you could play with sshd_config parameter MaxStartups. The following text comes from sshd_config man page.
MaxStartups
Specifies the maximum number of concurrent unauthenticated con-
nections to the sshd daemon. Additional connections will be
dropped until authentication succeeds or the LoginGraceTime
expires for a connection. The default is 10.
Alternatively, random early drop can be enabled by specifying the
three colon separated values â start:rate:fullâ (e.g.,
"10:30:60"). sshd will refuse connection attempts with a proba-
bility of â rate/100â (30%) if there are currently â startâ (10)
unauthenticated connections. The probability increases linearly
and all connection attempts are refused if the number of unau-
thenticated connections reaches â fullâ (60).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2005 01:58 AM
08-19-2005 01:58 AM
Solutionnpty 700
nstrpty 700
nstrtel 700
SAM will automatically extend the (very low) default of 60 connections by adjusting both the kernel parameters and also creating the additional device files. If you think you'll need more, bump it up to more than you'll need (1000? 5000?)
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2005 06:29 PM
08-22-2005 06:29 PM
Re: 64 bit Vs 32 bit Application
Thanks to everyone for the reply. I have tuned the kernel parameters and the problem goes away. Now my sshd handles more concurrent connection than before.
Thanks everyone for the timely help.