我正在尝试将我的 Jenkins 从一台 Centos 机器复制到另一台机器。我正在尝试压缩整个 Jenkins 文件夹并将其解压缩到另一台机器中。
当我尝试在新机器中启动 Jenkins 时,出现以下错误
Unit jenkins.service could not be found.
我们是否必须在每台机器上安装 Jenkins?我们可以不复制文件夹并在新机器中启动Jenkins吗?
答案1
仅仅因为 Jenkins 主目录存在并不意味着 Jenkins 服务已安装
运行以下命令:
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo && \
rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key && \
yum install -y java-1.8.0-openjdk-devel jenkins && \
yum clean all && \
systemctl enable jenkins && \
systemctl start jenkins