Difference between revisions of "Ssh - sudo no-tty-present-and-no-askpass-program-specified-error"

From OnnoWiki
Jump to navigation Jump to search
(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...")
 
Line 20: Line 20:
 
Use NOPASSWD line for all commands, I mean:
 
Use NOPASSWD line for all commands, I mean:
  
 +
nicholsonjf ALL=NOPASSWD: ALL
 
  jenkins ALL=(ALL) NOPASSWD: ALL
 
  jenkins ALL=(ALL) NOPASSWD: ALL
  
 
Put the line after all other lines in the sudoers file.
 
Put the line after all other lines in the sudoers file.
 
 
 
 
  
 
==Referensi==
 
==Referensi==
  
 
* https://stackoverflow.com/questions/21659637/how-to-fix-sudo-no-tty-present-and-no-askpass-program-specified-error
 
* https://stackoverflow.com/questions/21659637/how-to-fix-sudo-no-tty-present-and-no-askpass-program-specified-error

Revision as of 07:36, 17 December 2018

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:

nicholsonjf ALL=NOPASSWD: ALL
jenkins ALL=(ALL) NOPASSWD: ALL

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

Referensi