1
0

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で権限設定に失敗したときの対処方法

Posted at

はじめに

Jenkinsでアカウントの権限設定に失敗し(管理者権限のつけ忘れなど)、ログインすることができない、操作権限がなく何もできないといった状態に陥った場合の対処方法です。

手順

1. サーバーへアクセス

SSHでサーバーへアクセスする

2. 設定ファイルを開く

以下にあるコンフィグファイルを開く。

/var/lib/jenkins/config.xml
($JENKINS_HOME)

3. セキュリティを無効化する

  1. useSecurityタグ内ををFalseに変更する。
  2. authorizationStrategyタグ内を削除する。
  3. securityRealmタグ内を削除する。

4. Jenkinsを再起動させる

sudo /etc/init.d/jenkins restart

5. Jenkinsにログイン

ブラウザからログイン。その後にセキュリティ設定正しく設定する。

参考

https://wiki.jenkins-ci.org/display/JENKINS/Disable+security

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?