原文連接:https://my.oschina.net/u/178116/blog/519840
--------------------有道云筆記保存----------------------------------------------
?今天在整理公司Maven私服的時候,不小心把Release庫刪掉了。瞬間冒出冷汗來了!公司所有的積累都沒了啊,腦子里閃過第一個辦法就是看是否有回收站,恰好在Nexus UI中看到了一個叫Trash...的功能。可是我點擊后發現只有Empty Trash的功能,這要按下去還得了啊。
????最后在Sonatype Nexus官方搜索到一篇文章,原文如下:
When you delete a repository from the Nexus UI, nexus will remove the repository from any groups it belongs too and move the repository contents to it's trash folder. Sometimes you will want to restore this repository back into service.
To restore a deleted repository with id of 'releases':
1. mv sonatype-work/nexus/trash/releases sonatype-work/storage so that you end up with sonatype-work/storage/releases
2. Recreate the repository with the same repository id 'releases' using the repositories tab user interface.
3. Add the repository to any groups that it was in before.The act of creating the repository in the UI will force a reindex of the previous repository storage contents.
? ? 幸好!找到了被刪除文件恢復的辦法。最后按照官方所提供的辦法成功地恢復了被刪Release庫下所有的數據。操作步驟如下:
-
首先找到sonatype-work/nexus/trash 下找到你刪除的庫,并保存到其他地方;
-
然后通過nexus控制臺點擊Add,選擇Hosted Repository,然后輸入被刪除的Repository信息;
-
把剛才保存的庫文件copy到指定的sonatype-work/nexus/storage/[releases]下即可;
-
點擊列表中的Public Repositories,然后在下方的Configuration標簽下將Releases添加到Ordered Group Repositories中;
-
最后Save保存就可以了。