3
3

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 3 years have passed since last update.

【忘備録】MacにHomebrewでJenkinsをインストール・ポート番号変更

Last updated at Posted at 2020-05-26

概要

Javaインストール済みのmacに、JenkinsをHomebrewでインストールし、port番号を8080から任意の番号に変更。

インストール

$ brew install jenkins

port番号を変更

/usr/local/Cellar/jenkins/2.x.x/homebrew.mxcl.jenkins.plistをテキストエディタで開き、—-httpPort=8080のところを任意の番号へ変更

常時起動・停止

  • 常時起動:brew services start jenkins
  • 停止:brew services stop jenkins

起動・停止(バックグラウンドで動かさない)

  • 起動:jenkins
  • 停止:crtl + c

起動後

起動したらhttp://localhost:●●●● にアクセスして各種設定へ。

参考

ありがとうございました。
https://medium.com/@vishnuteja/install-jenkins-as-a-service-on-macos-and-change-port-number-9aa097e5cfbf

3
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?