通过jenkins管道安装Tomcat和JDK

时间:2019-11-27 15:01:47

标签: jenkins

我有一些想法,可以通过jenkins管道脚本来安装Tomcat和JDK。使用SSH代理,我可以连接主机。登录后,我必须先安装tomcat,然后再安装JDK。

node {
  def remote = [:]
  remote.name = 'my-machine'
  remote.host = 'my-machine-poc.com'
  remote.user = '*****
  remote.password = '******'
  remote.allowAnyHosts = true
  stage('Remote SSH') {
    sshCommand remote: remote, command: "ls -lrt"
    sshCommand remote: remote, command: "for i in {1..5}; do echo -n \"Loop \$i \"; date ; sleep 1; done"
  }
}

如果可以的话,请有人帮我。

1 个答案:

答案 0 :(得分:0)

如果您使用的是debian,也许是:sudo apt get-install tomcat