- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Sudo Passwords Problems
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-15-2002 07:23 AM
05-15-2002 07:23 AM
I've just installed Sudo-1.6.6 on my L-class HP-UX 11.0.
I have a line in my sudoers file
%it ALL: ALL
which I think allows the users in group "it" to run any command on any server as root, but the have to enter there password.
The problem I am having is that the user is only prompted for their password the first time they sudo.
Is there anyway they are prompted for their password everytime they sudo.
I have tried
%it ALL=PASSWD:ALL
but to no avail
Thanks,
Glynn.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 07:57 AM
05-15-2002 07:57 AM
Re: Sudo Passwords Problems
User_Alias USERS = bob, john, all users...
USERS = PASSWD: ALL
GL,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 02:12 PM
05-15-2002 02:12 PM
Re: Sudo Passwords Problems
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for the details on how to write a sudoers file.
#
# Host alias specification
# User alias specification
User_Alias WHATEVER=%it
# Cmnd alias specification
Cmnd_Alias SOMETHING=/etc/Tivoli/, /appl/Tivoli/
Defaults:WHATEVER !authenticate
# User privilege specification
root ALL=(ALL) ALL
%it ALL=(ALL) NOPASSWD:SOMETHING
HTH
DCJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 02:20 PM
05-15-2002 02:20 PM
Re: Sudo Passwords Problems
Here is what we use on our support server, with no specical considerations. It basically allow these people to run 'su -'
HTH
~Michael~
# User alias specification
User_Alias SYSADM = myuser1, myuser2
User_Alias OMNI = myuser1, myuser2
# Cmnd alias specification
Cmnd_Alias SU = /usr/bin/su
Cmnd_Alias OMNI = /opt/omni/bin/xomni
# User privilege specification
root ALL=(ALL) ALL
SYSADM ALL=(ALL) ALL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 09:55 PM