- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- I don't know the function of this process?
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
04-10-2003 05:59 PM
04-10-2003 05:59 PM
it consume cpu time 54:45. I want to kill if it have no use.
Could I?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 06:29 PM
04-10-2003 06:29 PM
Re: I don't know the function of this process?
And I wouldn't kill it. Especially since it???s got a hold of your /us/sam/lib.
Is this a trusted system, per chance?
What is the pid?
Try: 'lsof -p PID' and attach the report.
This patch in particular applies:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 06:29 PM
04-10-2003 06:29 PM
Re: I don't know the function of this process?
And I wouldn't kill it. Especially since it???s got a hold of your /us/sam/lib.
Is this a trusted system, per chance?
What is the pid?
Try: 'lsof -p PID' and attach the report.
This patch in particular applies: PHCO_27375
http://www2.itrc.hp.com/service/cki/patchDocDisplay.do?patchId=PHCO_27375
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 06:34 PM
04-10-2003 06:34 PM
Re: I don't know the function of this process?
As mentioned, it is an XWindows sam session. You should be able to see the tty it is running on, and find the user of that tty with a 'who -u'. Then, you can go see who is running it and get them out of it. If that fails, you can probably kill it. If somebody is running sam and you don't know who it is, I'd kill it for sure.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 06:44 PM
04-10-2003 06:44 PM
Re: I don't know the function of this process?
root@UNIX[/]#ps -ef|grep samx
root 10401 10400 253 15:41:10 ? 102:42 /usr/sam/lbin/samx -C -p 10306 -s br_sa_bdevs /usr/sam/lib/%L/b
root 10400 1 0 15:41:09 ? 0:00 sh -c LANG=C LC_ALL=C /usr/sam/lbin/samx -C -p 10306 -s br_sa_b
Could I?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 06:52 PM
04-10-2003 06:52 PM
Re: I don't know the function of this process?
ps -fp 10400
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 06:55 PM
04-10-2003 06:55 PM
Re: I don't know the function of this process?
root@rp2470[/oracle/logs]#ps -fp 10400
UID PID PPID C STIME TTY TIME COMMAND
root 10400 1 0 15:41:09 ? 0:00 sh -c LANG=C LC_ALL=C /usr/sam/lbin/samx -C -p 10306 -s br_sa_b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 07:05 PM
04-10-2003 07:05 PM
SolutionOk. I didn't look closely enough at your previous post, which had both of the processes listed. Since they don't have a tty associated with either of the processes, I suggest killing them both, especially since the second one appears to be a runaway. Just try:
kill 10400 10401
and see if that doesn't make them go away. My guess is that someone was running sam in Xwindows and lost their connection to the server, or rebooted their local system, leaving sam behind still running.
JP