如何启用 sudo 密码?

如何启用 sudo 密码?

我刚刚在 Windows Azure 群集中的虚拟机上安装了 Ubuntu 12.04。

默认情况下sudo不需要密码。

我想强制所有sudo命令都输入密码。

我该如何进行此项更改?

以下是 的内容visudo

#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Defaults timestamp_timeout=0

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

答案1

一开始我很困惑。后来我在 中找到了配置/etc/sudoers.d/90-cloud-init-users

# Created by cloud-init v. 0.7.5 on Tue, 16 Sep 2014 14:34:31 +0000

# User rules for azureuser
azureuser ALL=(ALL) NOPASSWD:ALL

注释最后一行将解决你的问题。

答案2

Amazon AWS 实例的设置方式相同。我不知道 Azure 中 Ubuntu 实例的用户名是什么,但您需要进入文件/etc/sudoers并查找以下行:

# Allow members of group sudo to execute any command
%sudo   ALL=NOPASSWD:ALL

替换NOPASSWDPASSWD保存文件。

答案3

/etc/sudoers.d/99-bitnami在我的情况下,是包含该行的文件NOPASSWD。我删除了它NOPASSWD:,所以文件现在看起来像这样:

%bitnami-admins ALL=(ALL) ALL

NOPASSWD:在你的情况下,删除应该有同样的效果/etc/sudoers.d/90-cloud-init-users ¹

相关内容