- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- resetting login fails
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
11-14-2006 06:20 AM
11-14-2006 06:20 AM
How do I reset the count of login fails on an account? I would have thought that it'd be easy to find a way to do this in the help for authorize, but I'm not seeing anything.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2006 06:43 AM
11-14-2006 06:43 AM
SolutionSimple: You log in succesfully to that account!
Or... SMOP... That count is maintained in field UAF$W_LOGFAILS in the SYSUAF record for the user. Read it, reset it.
I happened to have a command file which may, or might not, accomplish this....
$!libr/extr=$uafdef/out=uafdef.tmp sys$library:lib.mlb
$!sea uafdef.tmp lgicmd
$!EQU UAF$W_LOGFAILS 356
$
$write sys$output "--''p1'--"
$open /write/read/share=write uaf 'f$parse("SYSUAF","SYS$SYSTEM:.DAT",,,"SYNTAX_ONLY")
$loop:
$ read/end=done uaf rec
$ if p1.nes."" then read/end=done/key=&p1 uaf rec
$ logfail=f$cvsi(356*8,16,rec)
$ username=f$extr(0,12,rec)
$ if logfail.gt.0 then write sys$output username, ": ", logfail
$ if p2.nes.""
$ then
$ rec[356*8,16] = 'p2
$ write /symbol/update uaf rec
$ endif
$ if p1.eqs."" then goto loop
$done:
$close uaf
Good luck,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2006 09:06 AM
11-14-2006 09:06 AM
Re: resetting login fails
Great. They're accounts used exclusively for non-interactive logins. The folks with the passwords don't have any interactive access (which is the kind of login needed to reset the count), and I don't have the passwords.
I'll see what I can do with what you've given me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2006 01:34 PM
11-14-2006 01:34 PM
Re: resetting login fails
how about setting the sysgen parameter LGI_BRK_LIM and not allowing the login attempt again for specified amount of time using another sysgen parameter LBI_HID_TIM for any user
rgds
Archunan
Archie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2006 06:25 PM
11-14-2006 06:25 PM
Re: resetting login fails
That if you don't use rlogin with a proxy.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2006 08:13 AM
11-15-2006 08:13 AM