Ssh - sudo no-tty-present-and-no-askpass-program-specified-error

From OnnoWiki
Revision as of 07:31, 17 December 2018 by Onnowpurbo (talk | contribs) (Created page with "sumber: https://stackoverflow.com/questions/21659637/how-to-fix-sudo-no-tty-present-and-no-askpass-program-specified-error Granting the user to use that command without prom...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

sumber: https://stackoverflow.com/questions/21659637/how-to-fix-sudo-no-tty-present-and-no-askpass-program-specified-error


Granting the user to use that command without prompting for password should resolve the problem. First open a shell console and type:

sudo visudo

Then edit that file to add to the very end:

username ALL = NOPASSWD: /fullpath/to/command, /fullpath/to/othercommand

eg

john ALL = NOPASSWD: /sbin/poweroff, /sbin/start, /sbin/stop

will allow user john to sudo poweroff, start and stop without being prompted for password.

atau yang lebih extrim

Use NOPASSWD line for all commands, I mean:

jenkins ALL=(ALL) NOPASSWD: ALL

Put the line after all other lines in the sudoers file.



Referensi