Where does Jenkins store configuration files for the jobs it runs?

后端 未结 6 1755
攒了一身酷
攒了一身酷 2020-12-12 15:42

I\'m adding continuous integration to an EC2 project at work using Jenkins. The Jenkins machine itself is kept on an EC2 machine - one that might need to be taken offline an

6条回答
  •  死守一世寂寞
    2020-12-12 16:14

    On Linux one can find the home directory of Jenkins looking for a file, that Jenkins' home contains, e.g.:

    $ find / -name "config.xml" | grep "jenkins"
    /var/lib/jenkins/config.xml
    

提交回复
热议问题