sudo docker run --rm --volumes-from 5603fa962600 \
-v /srv/docker/company/jenkins/jenkins_home:/var/jenkins_home \
-v /srv/docker/company/jenkins/jenkins_data:/var/jenkins_data \
-v $(pwd):/backup \
busybox tar czvf /backup/backup_jenkins.tar.gz /var/jenkins_home /var/jenkins_data
I crashed my server and moved this to another host starting an empty jenkins container then I did the restore with
sudo docker run --rm --volumes-from e242124cea0c -v /srv/docker/company/jenkins/jenkins_home:/var/jenkins_home -v /srv/docker/company/jenkins/jenkins_data:/var/jenkins_data -v $(pwd):/backup busybox tar xzvf /backup/backup_jenkins.tar.gz
I started my app in mesos.
Using the nginx https proxy to http with the production url, I am already logged in on any computer and I can't log out.
Using the direct http:port link, I can't login.
I am using `Jenkins’ own user database` access control
Is there anything to do with the filesystem to get my jenkins working again ?