- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem with TCP/IP Port
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
тАО10-01-2003 02:58 AM
тАО10-01-2003 02:58 AM
Problem with TCP/IP Port
My users are experiencing extremely slow response time while using TCP port 5000 (not defined in /etc/services) defined in a 3rd party application, to connect to an Oracle database. The performance is significantly better when an alternate port is assigned.
What is the most common cause of such a problem? And what are the best methods for diagnosing and correcting the problem.
The servers are HP N-Class, running HP/UX 11.0, Oracle 8.1.7 and SunGuard/Camnius Zainet 6.2 application.
Thank you,
Don O.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 03:01 AM
тАО10-01-2003 03:01 AM
Re: Problem with TCP/IP Port
I know Oracle doesn't use /etc/services Is there an entry for port 1521 for the database?
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 04:10 AM
тАО10-01-2003 04:10 AM
Re: Problem with TCP/IP Port
I believe, not all the ports are supposed to be defined in /etc/services.
May not be the best suggestion but try installing a sniffer kind and monitor the connections on port 5000.
Thanks,
Sundar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 04:50 AM
тАО10-01-2003 04:50 AM
Re: Problem with TCP/IP Port
Port 1521 is used by oracle, but not defined in the services file.
How can I ping a port to check the response time? And refresh/reset the port is necessary?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 05:01 AM
тАО10-01-2003 05:01 AM
Re: Problem with TCP/IP Port
There is a quick and dirty way of doing it using telnet
# telnet server port
Services listening on the port may expect different kind of input during the conenction establishment. So this may not work all the time. If u dont get the connection refused message then u r fine.
Resetting the port ? u may have to kill and restart the service listening on the port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 06:02 AM
тАО10-01-2003 06:02 AM
Re: Problem with TCP/IP Port
'telnet ###.###.###.### 5000'
Connected
telnet>
Where 5000 = port number.
Also refer to 'lsof' with this syntax.
'lsof -i tcp:5000'
See if its installed on your server under /usr/local/sbin or obtain lsof from here:
http://hpux.cict.fr/hppd/hpux/Sysadmin/lsof-4.64/
Search the forum for an already compiled copy to download.
Finally, use netstat and search for dropped UDP packets and collisions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 06:14 AM
тАО10-01-2003 06:14 AM
Re: Problem with TCP/IP Port
making entries in the services file seems to be only a suggestion, widely ignored. Performance hit on a single port almost has to be contention or compatition for that port. HP cleans up better than other Unix versions after broken connections. In other versions I've had sloppy programmers lock up ports for extended periods, and only cleared after stopping and starting the service being used ( tcp) .
It can also be bogus traffic from almost anywhere that your net allows to the server address, and many network products have tools to identify such. Maybe your network folk can help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 06:39 AM
тАО10-01-2003 06:39 AM
Re: Problem with TCP/IP Port
netstat -a |grep 5000 will show you.
You may have to decrease your time wait interval if you have alot of ports in this state.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2003 07:50 AM
тАО10-01-2003 07:50 AM
Re: Problem with TCP/IP Port
HTH.