3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jenkinsにsudo権限を与える

Posted at

jenkinsのビルド実行ユーザーは
「jenkins」というユーザーです。
なので、このユーザーにsudo権限を与えてあげます。

コマンド「visudo」で編集可能なファイル「/usr/sbin/visudo」の
中にはこんな記述があります。

/#includedir /etc/sudoers.d

ですので、このディレクトリ配下にファイルを配置すれば、
自動的に読み込んでくれることが分かります。

$ cd /etc/sudoers.d

ディレクトリに移動して、

$ touch jenkins

「jenkins」ファイルを作成します。

$ vi jenkins

「jenkins」ファイルの中身を編集します。

jenkins ALL=(ALL) NOPASSWD:ALL

これで、jenkinsユーザーにsudo 権限を与えることができました。

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?