- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: What is a socket?
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
10-18-2000 09:42 AM
10-18-2000 09:42 AM
What is the impact on a HP-UX 10.20 that is using sockets?
I'm doing a system performance study and I would like to define the impact on my system that is using a lot of sockets?
Best Regards,
Veronica.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 09:53 AM
10-18-2000 09:53 AM
Re: What is a socket?
See this thread for a brief overview of "what is a socket" and some good references to programming sockets. This should get you started!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 09:53 AM
10-18-2000 09:53 AM
SolutionSee this thread for a brief overview of "what is a socket" and some good references to programming sockets. This should get you started!
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xfd096d96588ad4118fef0090279cd0f9,00.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 09:58 AM
10-18-2000 09:58 AM
Re: What is a socket?
A socket is one end of a network connection.
One socket equals one open file on HP-UX. The only kernel resource it uses is an entry in the open file table.
The activity on a socket uses system resources too, just like reading from and writing to a file does.
For a good description of what a socket is, I'd like to refer to 'Unix Network Programming' by Richard W Stevens (ISBN 0-13-949876-1).
Hope this helps,
Rik.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 10:41 AM
10-18-2000 10:41 AM
Re: What is a socket?
Veronica
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 11:30 AM
10-18-2000 11:30 AM
Re: What is a socket?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 11:42 AM
10-18-2000 11:42 AM
Re: What is a socket?
In answer to your last question: TCP/IP sockets are a de facto standard which many, many people understand how to program and use. One advantage to using them is that many different operating systems support the paradigm, and therefore can interoperate with one another.
As for performance impact, this is a relative issue. Properly programmed, a TCP/IP socket interface is a very efficient way to exchange data. Like anything, a poorly written socket application can certainly have adverse affects on system performance.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 11:43 AM
10-18-2000 11:43 AM
Re: What is a socket?
Disadvantages: possible security issues with well-defined network protocols. (probably overridden by the plethora of networking and security resources available to detect/prevent problems.)
Basically, if you want a client-server program to be network aware you need to have some means for it to talk across the wire. Sockets are the way that happens in the TCP (or OSI) networking model. If you choose to use something else, you have a much more difficult job ahead of you in creating and maintaining the necessary communications protocols. You also make your code much more difficult to port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 11:58 AM
10-18-2000 11:58 AM
Re: What is a socket?
Thanks to all.
Veronica.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 12:36 PM
10-18-2000 12:36 PM
Re: What is a socket?
I'm glad we could help! Thank you for expressing your appreciation so warmly.
Regards, Jim.
...JRF...