使用清华镜像源
在终端一次运行如下每一行代码
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
brew update
在使用过最后brew update后,需要等待一部分时间,大概一分钟,如果看见终端上方一直在变化就离成功不远了,最后会在终端中显示更新信息,就算是大功告成了
复原
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask.git
brew update
其他源可参考:
Homebrew更换国内镜像源(中科大、阿里、清华)_TyrantBoy的博客-CSDN博客_清华镜像源
Jenkins服务相关:
安装包安装的Jenkins
修改默认端口的方法:
- 先关闭jenkins ;
- 命令行下修改端口:sudo defaults write /Library/Preferences/org.jenkins-ci httpPort 7071
- 启动jenkins: sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist
- 停止jenkins:sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist
用brew安装的的Jenkins
修改默认端口的方法:
- 打开文件 vi /usr/local/opt/jenkins/homebrew.mxcl.jenkins.plist
- 修改默认端口号
- 启动jenkins: brew services start jenkins
- 停止jenkins:brew services stop jenkins
- 重启Jenkins:brew services restart jenkins
- 更新:切换到目录cd ~/.jenkins,然后用最新下载的war包替换文件夹中的war