Mar 25 11:31:33 raspberrypi sudo: pam_unix(sudo:auth): conversation failed
Mar 25 11:31:33 raspberrypi sudo: pam_unix(sudo:auth): auth could not identify password for [www-data]
1root@raspberrypi:/etc# cat /etc/sudoers2#3# This file MUST be edited with the 'visudo' command as root.4#5# Please consider adding local content in /etc/sudoers.d/ instead of6# directly modifying this file.7#8# See the man page for details on how to write a sudoers file.9#10Defaults env_reset
11Defaults mail_badpass
12Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"1314# Host alias specification1516# User alias specification1718# Cmnd alias specification1920# User privilege specification21root ALL=(ALL:ALL) ALL
2223# Allow members of group sudo to execute any command24%sudo ALL=(ALL:ALL) ALL
2526# See sudoers(5) for more information on "#include" directives:2728Cmnd_Alias LEDSTART_CMD = /usr/bin/python3 /var/www/html/ledStart.py
29Cmnd_Alias LEDSTOP_CMD = /usr/bin/python3 /var/www/html/ledStop.py
3031#includedir /etc/sudoers.d32pi ALL=(ALL) NOPASSWD: ALL
33www-data ALL=(ALL) NOPASSWD: LEDSTART_CMD, LEDSTOP_CMD
34root@raspberrypi:/etc#
WEBで検索するとwww-data ALL=(ALL) NOPASSWD: ALL のように簡単に修正する例が見つかりますが、上記のようにpythonコマンドだけでなく、なんでも実行できるようになってしまうので、セキュリティの観点からはお勧めできない指定だと思います。実験やテストではなく、実運用で使用する場合は危険ですので注意した方が良いかと思われます。(ラズパイであれば実験用だと思いますが)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/03/25 13:11
2019/04/07 02:08
2019/04/07 02:47 編集