방금 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
파일 NOPASSWD
로 바꾸고 저장합니다.PASSWD
답변3
/etc/sudoers.d/99-bitnami
내 경우에는 해당 줄이 포함된 파일이었습니다 NOPASSWD
. NOPASSWD:
이제 파일이 다음과 같이 보이도록 제거했습니다 .
%bitnami-admins ALL=(ALL) ALL
NOPASSWD:
귀하의 경우 에 제거해도 동일한 효과가 있어야합니다./etc/sudoers.d/90-cloud-init-users
¹