- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- can you tie an ip address to a pid?
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
06-09-2000 12:35 PM
06-09-2000 12:35 PM
can you tie an ip address to a pid?
If a customer gives us their ip address, is there a way to tie this to their process
id(s)?
Ive been told that a past sysadmin had some utility or script to do this. When a customer had a problem he'd run this and then kill their processes based on ip address. I'm fairly new at this and I cant find any way to do this. I've tried the 'owners' utility(among others) but it doesnt show pid.
thanks,
Mark Grossman
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2000 01:43 PM
06-09-2000 01:43 PM
Re: can you tie an ip address to a pid?
who -a
This will show you the ip address,user and pid.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2000 02:29 PM
06-09-2000 02:29 PM
Re: can you tie an ip address to a pid?
thanks, but unfortunately these customers login to Oracle apps and not to Unix. So all i see is a user called applmgr from the Unix side.
thanks again,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2000 05:51 PM
06-10-2000 05:51 PM
Re: can you tie an ip address to a pid?
1) netstat -f inet|grep oralsnr
- if oralsnr is defined in /etc/services as the oracle listener service name
2) netstat -f inet|grep 1521
- if your oracle listener is listening at port 1521
3) Use lsof
- if you are unable to identify the service from the netstat output but you are able to identify the process(es) that runs your Oracle server daemons.
Regards.
Steven Sim.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2000 10:04 AM
06-12-2000 10:04 AM
Re: can you tie an ip address to a pid?
It is available from the HP Porting Archive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2000 12:07 PM
06-12-2000 12:07 PM
Re: can you tie an ip address to a pid?
thanks,
Mark