- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- UX bandwidth monitor tool
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
11-13-2005 11:03 PM
11-13-2005 11:03 PM
I am to compute how much bandwidth an oracle application needs. I browsed oracle metalink but as I found no precise answer, I shall do it myself.
The application and oracle database are installed on an HP-UX B.11.11 machine. Clients connect by means of http.
What tool should I use? Is there a similar tool available for UX as iptraf on LINUX?
Thanks and regards,
AlexG.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2005 11:20 PM
11-13-2005 11:20 PM
Solutionhttp://h21007.www2.hp.com/dspp/files/unprotected/GlanceTrial/trial_gp_C.03.86.00_11.11rel.depot
Other tools:
ethereal
tcpdump
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
11-14-2005 03:13 AM
11-14-2005 03:13 AM
Re: UX bandwidth monitor tool
I will install the package from the CD-ROM since the downloaded file keeps on prompting corruption related errors.
I will keep you guys posted.
Thanks and regards,
AlexG.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 05:36 PM
11-14-2005 05:36 PM
Re: UX bandwidth monitor tool
For future references, I have found that a rough estimate shall be 6-12kbps per user for Oracle's OFI.
I will post also the results obtained using HP's glance tool.
Regards,
AlexG.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2005 05:45 PM
11-14-2005 05:45 PM
Re: UX bandwidth monitor tool
#!/bin/ksh
#Monitor.ksh
while [[ 1 ]]
do
netstat -ivn
sleep 5
clear
done
# exit
exit 0
########
It will give you the details.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 12:54 AM
11-15-2005 12:54 AM
Re: UX bandwidth monitor tool
Thank you guys,
AlexG