场景:使用vpn登录,然后通过git拉取数据进行打包的简单的流程(简单的流水账)
1、安装openvpn
yum install epel-release安装最新版的enpl的yum源。
yum install openvpn
2、设置登录
拷贝对应的文件到/etc/openvpn/client/目录下
openvpn /etc/openvpn/client/qcloud-prodect/rtr-x7p57csx.ovpn>/dev/null &
3、生成ssh-key
a)本地生成ssh-key,用ssh-keygen -t rsa
b)拷贝对应的id_rsa.pub内容到git上的ssh keys中
4、检出文件并build
a)git clone ssh://git@192.168.100.210:2222/xxxxx/audit-image-local.git
b)编译工作区:mvn compile
c)打包:mvn -Pproduction package
d)后续每次都进行更新 git pull ssh://git@192.168.100.210:2222/xxxxx/audit-image-local.git
原文链接:https://www.f2er.com/centos/377749.html