- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- verify an User
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
05-31-2004 10:52 PM
05-31-2004 10:52 PM
i have an user on my System HP-UX 11.00 called guest.
I wont know when it is have been created and by who?
grep guest /etc/passwd
guest:*:103:20:Guest login:/home/guest:/sbin/sh
How can I verify and freeze/or blocked this user.
(I wont not cancell the user but only block it)
Thanks Alex
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 10:59 PM
05-31-2004 10:59 PM
Re: verify an User
Check ownership and timestamp of the user home directory by the command:
# ls -l /home/guest
Don't worry about this user. The "*" character in the 2nd field of /etc/passwd file indicates you that this user is locked.
For extra info:
# man passwd
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 11:01 PM
05-31-2004 11:01 PM
Solutionrunning "last guest" will give you a list of all the times someone has logged in as that user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 11:05 PM
05-31-2004 11:05 PM
Re: verify an User
The simplest way to lock the account is to use
passwd -l guest
(that's a lower case L). This will prevent login, while keeping the ID and all associated files in place.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 11:09 PM
05-31-2004 11:09 PM
Re: verify an User
The simpliest way to desactivated the
user is using SAM, menu: Users/Groups.
You can choise the user and make desactivation :).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 11:24 PM
05-31-2004 11:24 PM
Re: verify an User
Alessandro if your system is in trusted mode pls consider the Chris note.
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 11:27 PM
05-31-2004 11:27 PM
Re: verify an User
Other way of finding out when and how user was created is not known to me. One way could be archiving HISTFILE of the root user :-).
Regards,
Anshu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2004 11:55 PM
05-31-2004 11:55 PM
Re: verify an User
for trusted system, the second segment is * for all accounts in the file /etc/passwd.
for non-trusted system, the second segment is * for account that r disabled.
to check when the last time guest account is use:
# last -R|grep guest|head
regards.