Authentication error in jenkins on using sudo

2019-02-17 11:11发布

I have sh script in jenkins which has sudo ssh command and I am getting this error

Warning: Identity file key.pem not accessible: Permission denied.
Host key verification failed.
sudo: no tty present and no askpass program specified

I have found solutions saying add

jenkins ALL=(ALL) ALL

these lines in /etc/sudoers but still its not working.

2条回答
淡お忘
2楼-- · 2019-02-17 11:49

username ALL= NOPASSWD: ALL in sudoers worked in ubuntu server 12.04.2

查看更多
倾城 Initia
3楼-- · 2019-02-17 11:55
sudo su    
visudo -f /etc/sudoers

add add following line at the end.

jenkins ALL= NOPASSWD: ALL
查看更多
登录 后发表回答