Sudo issue


 
Thread Tools Search this Thread
Operating Systems AIX Sudo issue
# 8  
Old 09-11-2014
Can you execute the below command from that user for listing.

sudo -l
# 9  
Old 09-11-2014
When I run the command I get the same error message as shown in the picture on my first post:

Code:
AIX-7-DEV.lab.xxx:[/usr/bin]sudo -l

We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:

    #1) Respect the privacy of others.
    #2) Think before you type.
    #3) With great power comes great responsibility.

Sorry, try again.
Sorry, try again.
Sorry, try again.
sudo: 3 incorrect password attempts

Moderator's Comments:
Mod Comment
Please use CODE tags as in the forum rules for posting code, files, input and output/errors
It makes it far easier to read and respects multiple spaces where they may be critical

Last edited by rbatte1; 09-11-2014 at 08:28 AM.. Reason: Added CODE tags and capital letters.
# 10  
Old 09-11-2014
Hmmmm......Smilie

Can we see the output of these too? :-
Code:
ls -l /etc/sudoers
id
who am i
ps -f

Thanks,
Robin
# 11  
Old 09-11-2014
Seems sudo is not configured/misconfigured.
Please reconfigure it for the respective user.
Or test with full access,

Code:
YourUserName    ALL=NOPASSWD: ALL

# 12  
Old 09-11-2014
Code:
AIX-7-DEV.lab.[/usr/bin]ls -l /etc/sudoers
-r--r-----    1 root     system         3065 Sep 11 12:52 /etc/sudoers
AIX-7-DEV.lab.[/usr/bin]id
uid=284(logon) gid=1(staff)
AIX-7-DEV.lab.[/usr/bin]whoami
logon
AIX-7-DEV.lab[/usr/bin]ps -f
     UID     PID    PPID   C    STIME    TTY  TIME CMD
   logon 3801120 6291704   0 14:14:53  pts/0  0:00 ksh
   logon 5636122 7864570   0 14:35:07  pts/0  0:00 ps -f
 MorSudo 5963836 7143502   0 14:03:19  pts/0  0:00 bash
    root 6291704 5963836   0 14:14:02  pts/0  0:00 bash
   logon 6619344 7733378   0 14:33:00  pts/0  0:00 ksh
     guy 6947002 3801120   0 14:21:58  pts/0  0:00 ksh
    root 7077970 7405746   0 13:53:42  pts/0  0:00 -bash
    root 7143502 7929910   0 13:58:56  pts/0  0:00 bash
     guy 7667964 6619344   0 14:33:19  pts/0  0:00 ksh
     guy 7733378 7798916   0 14:32:52  pts/0  0:00 ksh
    root 7798916 6947002   0 14:32:10  pts/0  0:00 bash
   logon 7864570 7667964   0 14:33:27  pts/0  0:00 ksh
   logon 7929910 7077970   0 13:53:47  pts/0  0:00 ksh
AIX-7-DEV.lab.[/usr/bin]

---------- Post updated at 06:44 AM ---------- Previous update was at 06:41 AM ----------

with NOPASSWD argument in the sudoers file the sudo command working with no problems

---------- Post updated at 06:44 AM ---------- Previous update was at 06:44 AM ----------

with NOPASSWD argument in the sudoers file the sudo command working with no problems

Last edited by rbatte1; 09-11-2014 at 08:42 AM.. Reason: Wrapped whole post in CODE tags
# 13  
Old 09-11-2014
Well, I was after the output from who am i rather than whoami, but the ps has picked up that information anyway.

I'm confused as to the process 2963836 owned by MorSudo How does this come in to things?

It seems to be several shells/users deep, switching shells ksh/bash and users (guy, root, logon & MorSudo) starting with the first process shown
Code:
root 6291704 5963836   0 14:14:02  pts/0  0:00 bash



Robin
# 14  
Old 09-11-2014
i didnt understand you want me to kill some processes?

---------- Post updated at 07:03 AM ---------- Previous update was at 07:02 AM ----------

i killed that process, no change
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Sudo access issue

Hi, I have given access to user mwadmin in shudders file as : mwadmin ALL:NOPASSWD:/www/* /usr/* /opt/* However, not able to execute below command: sudo mkdir -p /usr/test password for mwadmin: Sorry, user mwadmin is not allowed to execute '/bin/mkdir -p /usr/test' as root. ... (4 Replies)
Discussion started by: saurau
4 Replies

2. Linux

Sudo issue

Dear All, I wanted to execute sqlplus using another user instead of oracle user. I have given user AA sudo permissions in such a way that it can execute all oracle related files. when i try the below command from user AA ,it is not working. sudo -u oracle sh -c sqlplus Error 6... (1 Reply)
Discussion started by: jegaraman
1 Replies

3. Shell Programming and Scripting

sudo: sorry, you must have a tty to run sudo

Hi, Have a need to run the below command as a "karuser" from a java class which will is running as "root" user. When we are trying to run the below command from java code getting the below error. Command: sudo -u karuser -s /bin/bash /bank/karunix/bin/build_cycles.sh Error: sudo: sorry,... (8 Replies)
Discussion started by: Satyak
8 Replies

4. Shell Programming and Scripting

sudo: sorry, you must have a tty to run sudo

Hi All, I running a unix command using sudo option inside shell script. Its working well. But in crontab the same command is not working and its throwing "sudo: sorry, you must have a tty to run sudo". I do not have root permission to add or change settings for my userid. I can not even ask... (9 Replies)
Discussion started by: Apple1221
9 Replies

5. AIX

issue with cd command on sudo

Hi admins, I have installed sudo in aix 5.3 and configured sudoers file.Every command is working fine with sudo except cd . If i give sudo cd /etc/security it returns nothing.There is no pwd change and no any error messages. sudo -l command returns all executables including cd. sudo ls... (8 Replies)
Discussion started by: newaix
8 Replies

6. Shell Programming and Scripting

ssh foo.com sudo command - Prompts for sudo password as visible text. Help?

I am writing a BASH script to update a webserver and then restart Apache. It looks basically like this: #!/bin/bash rsync /path/on/local/machine/ foo.com:path/on/remote/machine/ ssh foo.com sudo /etc/init.d/apache2 reloadrsync and ssh don't prompt for a password, because I have DSA encryption... (9 Replies)
Discussion started by: fluoborate
9 Replies

7. UNIX for Dummies Questions & Answers

sudo login issue

I logged in through ssh, but can't re-login as root. sudo login Arch login: root Password: Login incorrect Arch login: But I am sure my password is right. Why? But on local tty1, this works. (2 Replies)
Discussion started by: vistastar
2 Replies

8. Shell Programming and Scripting

Issue in passing passwd to login into a sudo account

Hi Gurus, I have small issue... I used to pass the passwd for sudo commands like below, gzcat ~/passwd.gz | sudo su - <villin> >> eof ------ ----- ------ eof And it was able to login into "villin" sudo account successfully. But now, I'm using the same in another script for the... (2 Replies)
Discussion started by: raghu.iv85
2 Replies

9. UNIX for Dummies Questions & Answers

Unable to use the Sudo command. "0509-130 Symbol resolution failed for sudo because:"

Hi! I'm very new to unix, so please keep that in mind with the level of language used if you choose to help :D Thanks! When attempting to use sudo on and AIX machine with oslevel 5.1.0.0, I get the following error: exec(): 0509-036 Cannot load program sudo because of the following errors:... (1 Reply)
Discussion started by: Chloe123
1 Replies

10. UNIX for Dummies Questions & Answers

Sudo permission issue

folks; How can i give a group a sudo permission to execute only some command "like start/stop Apache", so every user in that group can sudo to use this as himself, i mean when he tries to sudo, he will be asked for a password (and make it so he must use his own NT password not a generic one) then... (6 Replies)
Discussion started by: Katkota
6 Replies
Login or Register to Ask a Question