Jenkins使用(七)新增新建立的Jenkins使用者到組
阿新 • • 發佈:2019-02-04
新建立一個使用者,在使用的過程中提示該使用者“jenkins 不在sudoers 檔案中。此事將被報告。”解決這個問題的方案如下:
修改/etc/sudoers這個檔案的內容,將建立的使用者新增進去就可以了。
## Allows people in group wheel to run all commands
# %wheel ALL=(ALL) ALL
jenkins ALL=(ALL) ALL
## Same thing without a password
# %wheel ALL=(ALL) NOPASSWD: ALL
## Allows members of the users group to mount and unmount the
## cdrom as root
# %users ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom
## Allows members of the users group to shutdown this system
# %users localhost=/sbin/shutdown -h now
## Read drop-in files from /etc/sudoers.d (the # here does not mean a comment)
#includedir /etc/sudoers.d
這樣就可以了。