- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- User Restriction
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-27-2006 10:55 PM
09-27-2006 10:55 PM
If i want to restrict a user such a way as the user should not login more than one terminal. Then how can i do this. Please any of one help me.
Thanx & Rgds,
M.Guna
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 11:04 PM
09-27-2006 11:04 PM
Re: User Restriction
this thread should start you off:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=582504
Alternative could be to check in the /etc/profile and terminate any session for a given userid, if it does not come from a certain ip address.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 11:26 PM
09-27-2006 11:26 PM
SolutionThe easy way to restrict number of login sessions is to use /etc/default/security file. If you do not have it, then you can create one.
What you need to configure is:
NUMBER_OF_LOGINS_ALLOWED=1
You do a lot with /etc/default/security. Here is the content in my security file:
MIN_PASSWORD_LENGTH=8
PASSWORD_MIN_UPPER_CASE_CHARS=1
PASSWORD_MIN_LOWER_CASE_CHARS=3
PASSWORD_MIN_DIGIT_CHARS=1
PASSWORD_MIN_SPECIAL_CHARS=1
PASSWORD_HISTORY_DEPTH=1
NUMBER_OF_LOGINS_ALLOWED=4
NOLOGIN=0
ABORT_LOGIN_ON_MISSING_HOMEDIR=0
Regards,
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 11:43 PM
09-27-2006 11:43 PM
Re: User Restriction
If you are not able to take advantage of /etc/default/security, you could script a check in /etc/profile.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2006 01:56 AM
10-02-2006 01:56 AM
Re: User Restriction
could you please update this thread ?
If the problem has been resolved please see http://forums1.itrc.hp.com/service/forums/helptips.do?#28
Please identify the solution, award points and close.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2006 03:56 PM
10-02-2006 03:56 PM
Re: User Restriction
I used now etc/securitty file.
It solved my problem .