Mac下尽量使用命令行安装 jenkins 方法

1、安装brew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 1

 

2、安装jenkins

brew install jenkins

 

3、链接launchd配置文件

ln -sfv /usr/local/opt/jenkins/*.plist ~/Library/LaunchAgents

 

4、启动jenkins

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist

 

5、停止jenkins

launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist

 

⚠️重要提示: 强烈建议使用命令行进行安装,使用安装包dmg安装会有很多权限问题无法解决。 

你可能感兴趣的:(收藏)