- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Password restriciton
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
02-07-2003 11:13 AM
02-07-2003 11:13 AM
I need to restrict users to login in to HP-UX 11.00 only once. We can not convert in to trusted system (problems with the BAAN aplication).
Is that possible ?
Miro
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 11:32 AM
02-07-2003 11:32 AM
SolutionNUMBER_OF_LOGINS_ALLOWED=N
where N number of logins are allowed per user.
The /etc/default/security functionality (I think) was introduced into 11.0 via a patch(es), possibly PHCO_25590 and PHCO_26089. If I can find a definitive reference, I'll post it.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 11:35 AM
02-07-2003 11:35 AM
Re: Password restriciton
Bill Hassell's comments in this thread:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x0c8b8cc5e03fd6118fff0090279cd0f9,00.html
seem to definitely identify PHCO_26089 (or newer).
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 12:45 PM
02-07-2003 12:45 PM
Re: Password restriciton
NUMBER_OF_LOGINS_ALLOWED=3 in the file /etc/default/security.
But it doesn't limit users whose usernames are 8 charachters long, to solve this aplly the following patches:
HP-UX 11.11: PHCO_27694
HP-UX 11.00: PHCO_27721
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 12:46 PM
02-07-2003 12:46 PM
Re: Password restriciton
Miro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 01:12 PM
02-07-2003 01:12 PM
Re: Password restriciton
Other way could be include in /etc/profile file followings lines:
case $LOGNAME in
do
user1|user2|user3|user4)
MAX=3 #Login limit
CURRENT=`who|grep $LOGNAME|wc -l`
if [ $CURRENT -gt $MAX ]
then
echo "Your Message.."
exit
fi
;;
esac