Jenkins初回起動時のオフライン状態を解決する
homebrewでJenkinsをインストールし初回起動時にセキュリティのためにパスワード認証を行います.
そのあとにプラグインのインストールなどのセットアップを行いますが,以下のようにオフラインになってしまいました.
解決策
~/.jenkins/hudson.model.UpdateCenter.xml
内のurlをhttpsからhttpへと変更する
<?xml version='1.1' encoding='UTF-8'?>
<sites>
<site>
<id>default</id>
<url>https://updates.jenkins.io/update-center.json</url>
</site>
</sites>
変更後再起動することでオフライン状態が解決
brew services restart jenkins
もし再起動後にアクセスしても404 NotFoundとなる場合はキャッシュを削除すれば解消される
参照
Author And Source
この問題について(Jenkins初回起動時のオフライン状態を解決する), 我々は、より多くの情報をここで見つけました https://qiita.com/chi_craper_/items/dd27e9db9a4633fcf01a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .