- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- User login but not the owner
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
09-13-2004 03:31 PM
09-13-2004 03:31 PM
the user login into the system twice , then there are two logins in the system now ( eg. pts/10 , pts/15 ), however , when the user try to kill the another process ( pts/15 ) , it pop the message " kill: (8409) - Not owner" , I am very strange that this pid-8409 is the process of this same user , why can't kill the pid of the same user ? thx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2004 03:33 PM
09-13-2004 03:33 PM
Re: User login but not the owner
edpuser pts/10 Sep 14 11:14 00:13 8409 (192.168.1.2)
edpuser pts/15 Sep 14 11:28 . 22389 (192.168.1.2)
$ kill -1 8409
kill: (8409) - Not owner
$ kill -9 8409
kill: (8409) - Not owner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2004 03:38 PM
09-13-2004 03:38 PM
Re: User login but not the owner
$ who -u |grep edpuser
edpuser pts/10 Sep 14 11:14 00:13 8409 (192.168.1.2)
edpuser pts/15 Sep 14 11:28 . 22389 (192.168.1.2)
$ kill -1 8409
kill: (8409) - Not owner
$ kill -9 8409
kill: (8409) - Not owner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2004 03:50 PM
09-13-2004 03:50 PM
Solutionll /usr/bin/kill
and /usr/bin/ directory there.
ll -d /usr/bin/
Is /usr/bin/ included in PATH variable. Else try to use the full path location there.
/usr/bin/kill -1
What you are getting to try to kill from another terminal to this one?
Can you able to delete the own pid oh shell as,
kill -1 `who -m | awk '{ print $7 }'`
Default permission for kill is,
555 bin bin /usr/bin/kill
/usr/bin/ is also using the same
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2004 05:04 PM
09-13-2004 05:04 PM
Re: User login but not the owner
/usr/bin/kill
/usr/bin/
/bin/kill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2004 06:36 PM
09-13-2004 06:36 PM
Re: User login but not the owner
Try to increase the nproc kernel parameter or wait for some process to stop it's execution.
If you are using hp-ux machines, less then 11.23 then try to use as,
kmtune -q nproc
It will give information's there.
A discussion related to this problem over,
http://lists.gnu.org/archive/html/bug-bash/2002-04/msg00098.html
-Muthu