【Maven学习】Nexus OSS私服仓库的备份与迁移

来源:互联网 发布:防小偷报警软件 编辑:程序博客网 时间:2024/06/06 02:00

点击有惊喜


背景

在上一篇博客 【Maven学习】Nexus OSS私服仓库的安装和配置 中,我们已经在机房搭建好了新的Nexus OSS私服仓库。下面是两个版本的Nexus OSS私服仓库的对比图。

老的Nexus OSS私服仓库
这里写图片描述

新的Nexus OSS私服仓库

这里写图片描述

明显老的Nexus OSS私服仓库的内容比新的Nexus OSS私服仓库的内容多。因此我们现在的工作就是将办公室上的老的Nexus服务器上的所有的数据迁移到机房的Nexus服务器。这一篇博客记录下整个Nexus OSS私服仓库的备份与迁移的过程。

一、老的Nexus OSS私服仓库备份

迁移中会遇到三个文件夹 , 打包、拉走 启动即可。

名称目录名重要配置文件nexus主目录nexus-2.6.4-02conf/nexus.properties里面有sonatype-work的地址sonatype-work目录sonatype-worknexus/conf/nexus.xml里面有storage的地址storage目录storage里面主要是各种程序的jar包等

迁移流程如下

这里写图片描述

首先我们在老的Nexus OSS私服仓库的这台Linux服务器上,查看相关的目录信息。

这里写图片描述

如上图所示,在老的Nexus OSS私服仓库的这台Linux服务器上,

nexus主目录的地址为:/usr/local/nexus-2.12.1-01

这里写图片描述

在 /usr/local/nexus-2.12.1-01/config/nexus.properties 文件中,指定了sonatype-work的地址

现在我们进入 /usr/local/sonatype-work/nexus/storage目录,查看里面的目录结构

[root@kf1appsvr storage]# pwd/usr/local/sonatype-work/nexus/storage[root@kf1appsvr storage]# lltotal 52drwxr-xr-x   6 root root 4096 Dec  4 08:49 android-betadrwxr-xr-x   6 root root 4096 Dec  4 08:49 android-devdrwxr-xr-x   6 root root 4096 Dec  4 08:49 android-releasedrwxr-xr-x   6 root root 4096 Dec  4 08:49 android-snapshotsdrwxr-xr-x  10 root root 4096 Dec  4 08:49 android_publicdrwxr-xr-x   4 root root 4096 Dec  4 08:49 apache-snapshotsdrwxr-xr-x  30 root root 4096 Dec  4 08:49 centraldrwxr-xr-x 125 root root 4096 Nov 30 17:08 central-m1drwxr-xr-x   6 root root 4096 Dec  4 08:49 publicdrwxr-xr-x   4 root root 4096 Dec  4 08:49 releasesdrwxr-xr-x   4 root root 4096 Dec  4 08:49 snapshotsdrwxr-xr-x   5 root root 4096 Dec  4 08:49 thirdpartydrwxr-xr-x   2 root root 4096 Jan 11  2017 xtc_devs

这里写图片描述

将此目录结构和Nexus管理界面对比,可以一一对应,如下所示。
这里写图片描述

从上面分析来看,我们只需要将nexus主目录和sonatype-work目录都备份好即可。但是两个Linux服务器的nexus配置的java路径之类的可能不同,我就不备份nexus主目录了。

我只备份sonatype-work目录,Nexus的构件仓库都保存在sonatype-work目录中,该目录的位置由nexus/conf/nexus.properties配置文件指定。

使用 tar命令将 sonatype-work目录 打包压缩为一个 tar.gz文件,命令如下所示

[root@kf1appsvr local]# tar -zcvf sonatype-work-2017-12-14.tar.gz ./sonatype-work/

备份中,整个备份过程比较缓慢,因为两年传上去的的文件和文件夹太多了。

这里写图片描述

打包完毕

这里写图片描述
生成了 sonatype-work-2017-12-14.tar.gz 文件,占用了2770940709 字节,差不多2.6G
这里写代码片

二、将老的Nexus OSS私服仓库的备份文件复制到新的Nexus OSS私服仓库

上一步我们将整个 sonatype-work 目录打包成一个压缩包 sonatype-work-2017-12-14.tar.gz,现在我们要将这个压缩包复制到新的Nexus OSS私服仓库的Linux服务器上。

我们是有 scp命令来进行复制操作,关于scp命令的操作可以参考之前的文章 git学习------> Gitlab如何进行备份恢复与迁移?

使用scp命令从远程服务器copy文件或者目录到本地

scp 用户名 @IP 地址 : 文件名 1 远程用户名 @IP 地址 : 文件名 2

[用户名 @IP 地址 :] 可以不输入 , 可能需要输入远程用户名所对应的密码 .

可能有用的几个参数 :

  • -v 和大多数 linux 命令中的 -v 意思一样 , 用来显示进度 . 可以用来查看连接 , 认证 , 或是配置错误 .
  • -C 使能压缩选项 .
  • -P 选择端口 . 注意 -p 已经被 rcp 使用 .
  • -4 强行使用 IPV4 地址 .
  • -6 强行使用 IPV6 地址 .

例如我使用如下命令,从远程服务器copy刚才的备份文件sonatype-work-2017-12-14.tar.gz到了新服务器的/usr/local 目录下

scp root@老的linux的ip地址:/usr/local/sonatype-work-2017-12-14.tar.gz /usr/local/

我们登录到新的Nexus OSS私服仓库那台linux服务器,然后执行上面的命令

这里写图片描述

敲了命令之后,需要我们确认是否connecting,我们敲一个yes,接着需要我们输入老的Nexus OSS私服仓库那台linux服务器的密码,如下所示

这里写图片描述

敲完之后,如果密码正确的话,则将刚才的备份文件copy到这台新的linux服务器。稍等一段时间之后则可以copy完毕,如下图所示:

这里写图片描述

真心尴尬,根目录 / 的磁盘空间用完了,导致复制过程终止,我们将这个复制到一半的文件删除掉。

我发现 /data2 的磁盘空间很充裕,因此我将文件复制到 /data2目录下,如下图所示

这里写图片描述

复制完毕之后,查看 /data2 目录,发现 复制过来的 sonatype-work-2017-12-14.tar.gz 文件也是 2770940709个字节,完整复制过来了。

这里写图片描述

三、解压备份文件

因为 根目录 / 下的磁盘空间不足,因此我们将刚才的压缩包解压到 /data2目录下。如下所示:

tar -zxvf sonatype-work-2017-12-14.tar.gz

这里写图片描述

解压过程

这里写图片描述

解压好后,会生成一个 sonatype-work目录。如下图所示:

这里写图片描述

四、还原仓库

因为我们新的Nexus OSS私服仓库之前制定的仓库地址为

[root@localhost local]# cd nexus-2.12.1-01/[root@localhost nexus-2.12.1-01]# ll总用量 40drwxr-xr-x 3 1001 1001  4096 12月 13 16:27 bindrwxr-xr-x 2 1001 1001  4096 12月 13 18:06 confdrwxr-xr-x 2 1001 1001  4096 12月 13 16:27 lib-rw-r--r-- 1 1001 1001 11006 3月   3 2016 LICENSE.txtdrwxr-xr-x 2 1001 1001  4096 12月 13 18:08 logsdrwxr-xr-x 4 1001 1001  4096 12月 13 16:27 nexus-rw-r--r-- 1 1001 1001   782 3月   3 2016 NOTICE.txtdrwxr-xr-x 5 1001 1001  4096 12月 13 18:08 tmp[root@localhost nexus-2.12.1-01]# pwd/usr/local/nexus-2.12.1-01[root@localhost nexus-2.12.1-01]# cat conf/nexus.properties ## Sonatype Nexus (TM) Open Source Version# Copyright (c) 2008-present Sonatype, Inc.# All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.## This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,# which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.## Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks# of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the# Eclipse Foundation. All other trademarks are the property of their respective owners.## Sonatype Nexus# ==============# This is the most basic configuration of Nexus.# Jetty sectionapplication-port=8081application-host=0.0.0.0nexus-webapp=${bundleBasedir}/nexusnexus-webapp-context-path=/nexus# Nexus sectionnexus-work=${bundleBasedir}/../sonatype-work/nexusruntime=${bundleBasedir}/nexus/WEB-INF[root@localhost nexus-2.12.1-01]# 

这里写图片描述

现在我们将老的Nexus OSS私服仓库的备份仓库 解压到了 /data2目录下,因此我们需要修改nexus/conf/nexus.properties配置文件,重新指定仓库的目录为 /data2/sonatype-work/nexus

这里写图片描述


点击有惊喜