Quantcast
Channel: GoLinuxHub
Viewing all articles
Browse latest Browse all 392

Why is sudo command asking for root password in Linux

$
0
0
I have written two blogs earlier to help you understand sudo configuration and its function which you can follow using the below link
How to configure passwordless sudo for a user in Linux
How to give permission to user to run some commands in Linux

In this blog I will try to keep my self strictly to the point of issue. You might have noticed that at times when you try to execute a command using sudo user it prompts for root password.

Reason:

You can see the below line in your /etc/sudoers file
Defaults       targetpw
[deepak@test ~]$ sudo /etc/init.d/sshd restart
[sudo] password for root:

As per this configuration ask for the password of the target user i.e. root.

Solution:

To fix this comment out this line
# visudo
# Defaults targetpw

Save and exit the file

Next try to use sudo for executing any command
[deepak@test ~]$ sudo /etc/init.d/sshd restart
[sudo] password for deepak:

Follow the below links for more tutorials



Viewing all articles
Browse latest Browse all 392

Trending Articles