-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1297375589.html
More file actions
659 lines (443 loc) · 23.9 KB
/
Copy path1297375589.html
File metadata and controls
659 lines (443 loc) · 23.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta name="generator" content="Hexo 3.9.0" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>一起来学maven之nexus私服的搭建 - 小奇的博客</title>
<meta name="description" content="前言本文假定你知道什么是maven,这里不做过多的阐述,如果有兴趣的话可以尝试看一下maven实战这本书,由于maven的国外仓库贼慢,加上有些自己封装的工具包不能直接放到中央仓库上,所以就有了搭建maven私服的需求,那么我们如何搭建呢?">
<meta name="keywords" content="nexus">
<meta property="og:type" content="article">
<meta property="og:title" content="一起来学maven之nexus私服的搭建">
<meta property="og:url" content="https://blog.visutech.cn/1297375589.html">
<meta property="og:site_name" content="小奇的博客">
<meta property="og:description" content="前言本文假定你知道什么是maven,这里不做过多的阐述,如果有兴趣的话可以尝试看一下maven实战这本书,由于maven的国外仓库贼慢,加上有些自己封装的工具包不能直接放到中央仓库上,所以就有了搭建maven私服的需求,那么我们如何搭建呢?">
<meta property="og:locale" content="zh-CN">
<meta property="og:image" content="https://blog.visutech.cn/images/og_image.png">
<meta property="og:updated_time" content="2020-05-07T08:12:43.000Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="一起来学maven之nexus私服的搭建">
<meta name="twitter:description" content="前言本文假定你知道什么是maven,这里不做过多的阐述,如果有兴趣的话可以尝试看一下maven实战这本书,由于maven的国外仓库贼慢,加上有些自己封装的工具包不能直接放到中央仓库上,所以就有了搭建maven私服的需求,那么我们如何搭建呢?">
<meta name="twitter:image" content="https://blog.visutech.cn/images/og_image.png">
<link rel="icon" href="/images/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.7.2/css/bulma.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:400,600|Source+Code+Pro">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/highlight.js@9.12.0/styles/atom-one-dark.css">
<style>body>.footer,body>.navbar,body>.section{opacity:0}</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@1.6.8/dist/css/lightgallery.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/justifiedGallery@3.7.0/dist/css/justifiedGallery.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/outdatedbrowser@1.1.5/outdatedbrowser/outdatedbrowser.min.css">
<link rel="stylesheet" href="/css/back-to-top.css">
<link rel="stylesheet" href="/css/progressbar.css">
<script src="https://cdn.jsdelivr.net/npm/pace-js@1.0.2/pace.min.js"></script>
<link rel="stylesheet" href="/css/style.css">
</head>
<body class="is-2-column">
<nav class="navbar navbar-main">
<div class="container">
<div class="navbar-brand is-flex-center">
<a class="navbar-item navbar-logo" href="/">
<img src="/images/visutech.png" alt="一起来学maven之nexus私服的搭建" height="28">
</a>
</div>
<div class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item"
href="/">主页</a>
<a class="navbar-item"
href="/archives">归档</a>
<a class="navbar-item"
href="/categories">类别</a>
<a class="navbar-item"
href="/tags">标签</a>
<a class="navbar-item"
href="/about">关于</a>
</div>
<div class="navbar-end">
<a class="navbar-item" target="_blank" title="Download on GitHub" href="https://github.com/ppoffice/hexo-theme-icarus">
<i class="fab fa-github"></i>
</a>
<a class="navbar-item is-hidden-tablet catalogue" title="目录" href="javascript:;">
<i class="fas fa-list-ul"></i>
</a>
<a class="navbar-item search" title="搜索" href="javascript:;">
<i class="fas fa-search"></i>
</a>
</div>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-8-tablet is-8-desktop is-9-widescreen has-order-2 column-main">
<div class="card">
<div class="card-content article ">
<div class="level article-meta is-size-7 is-uppercase is-mobile is-overflow-x-auto">
<div class="level-left">
<time class="level-item has-text-grey" datetime="2019-12-07T06:11:34.000Z">2019-12-07</time>
<span class="level-item has-text-grey">
5 分钟 读完 (大约 754 个字)
</span>
</div>
</div>
<h1 class="title is-size-3 is-size-4-mobile has-text-weight-normal">
一起来学maven之nexus私服的搭建
</h1>
<div class="content">
<h3 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h3><p>本文假定你知道什么是<code>maven</code>,这里不做过多的阐述,如果有兴趣的话可以尝试看一下<code>maven实战</code>这本书,由于<code>maven</code>的国外仓库贼慢,加上有些自己封装的工具包不能直接放到中央仓库上,所以就有了搭建<code>maven</code>私服的需求,那么我们如何搭建呢?<a id="more"></a>下面我们一起了解一下。</p>
<h3 id="准备"><a href="#准备" class="headerlink" title="准备"></a>准备</h3><ol>
<li><code>nexus</code>,我们使用<code>nexus</code>,版本为<code>2.14.17</code>,我们不使用<code>nexus3.x</code>原因是因为<code>nexus3.x</code>如何同步主仓库的索引,如果有知晓的大大,可以评论区告知一下,不胜感激。<a href="https://sonatype-download.global.ssl.fastly.net/repository/downloads-prod-group/oss/nexus-2.14.17-01-bundle.tar.gz" target="_blank" rel="noopener">点我下载nexus</a></li>
<li><code>jdk1.8</code>,这个没得选,建议<code>jdk1.8</code></li>
<li>系统要求看公司的要求一般公司建议<code>8核16g</code>。注意:<ul>
<li>请不要使用root用户允许<code>nexus</code>,所以需要<code>新建</code>一个<code>用户nexus</code></li>
<li><code>nexus</code>用户打开的文件描述符的数量限制增加到65,536或更高,centos用户可以通过编辑<code>/etc/security/limits.conf</code>文件来增加限制,在该文件中新增<code>nexus - nofile 65536- nofile 65536</code></li>
</ul>
</li>
<li>离线索引文件、离线索引配置文件、解压离线索引的jar,离线索引文件、离线索引配置文件以及可以通过<code>https://repo.maven.apache.org/maven2/.index/</code>这个地址来找到。<code>解压离线索引的jar</code>文件可以在<code>https://search.maven.org/</code>这个搜索仓库中搜索<code>org.apache.maven.indexer:indexer-cli:5.1.1</code>然后点击右上角的下载按钮即可</li>
</ol>
<table>
<thead>
<tr>
<th>文件</th>
<th>说明</th>
</tr>
</thead>
<tbody><tr>
<td><a href="https://repo.maven.apache.org/maven2/.index/nexus-maven-repository-index.gz" target="_blank" rel="noopener">nexus-maven-repository-index.gz</a></td>
<td>离线索引文件</td>
</tr>
<tr>
<td><a href="https://repo.maven.apache.org/maven2/.index/nexus-maven-repository-index.properties" target="_blank" rel="noopener">nexus-maven-repository-index.properties</a></td>
<td>索引配置文件</td>
</tr>
</tbody></table>
<h3 id="安装以及启动"><a href="#安装以及启动" class="headerlink" title="安装以及启动"></a>安装以及启动</h3><ol>
<li>将下载好的文件找一个合适的地方解压,然后会出现俩目录,<code>nexus-2.14.17-01</code>、<code>sonatype-work</code>一个是服务文件夹,一个是存放数据的文件夹</li>
<li>将下载好的离线索引文件、离线索引配置文件、解压离线索引的jar这三个放到同一目录下,然后用命令 <code>java -jar indexer-cli-5.1.0.jar -u nexus-maven-repository-index.gz -d indexer</code> 大概4-5分钟的样子就解压完成了。解压好的文件在同级目录下的<code>indexer</code>文件夹下</li>
<li>将<code>indexer</code>文件夹下的文件复制到<code>${nexus_home}/sonatype-work/nexus/indexer/central-ctx</code>文件夹下</li>
<li>进入<code>${nexus_home}/nexus-2.14.17-01/bin</code>文件夹下,运行<code>nexus start</code> 就可以启动了</li>
<li>防火墙放开8081端口就可以通过内网访问了,如果端口不爽可以通过修改<code>${nexus_home}/nexus-2.14.17-01/conf/nexus.properties</code>文件中的<code>application-port</code>属性来修改端口</li>
<li>记得开机自启、nexus服务的封装。</li>
</ol>
<h3 id="迁移"><a href="#迁移" class="headerlink" title="迁移"></a>迁移</h3><p>只需要将<code>nexus-2.14.17-01</code>、<code>sonatype-work</code>俩文件夹打包复制,拷贝到新机器上,然后重启即可</p>
</div>
<ul class="post-copyright">
<li><strong>本文标题:</strong><a href="https://blog.visutech.cn/1297375589.html">一起来学maven之nexus私服的搭建</a></li>
<li><strong>本文作者:</strong><a href="https://blog.visutech.cn">程振奇 | smallodd</a></li>
<li><strong>本文链接:</strong><a href="https://blog.visutech.cn/1297375589.html">https://blog.visutech.cn/1297375589.html</a></li>
<li><strong>发布时间:</strong>2019-12-07</li>
<li><strong>版权声明:</strong>本博客所有文章除特别声明外,均采用 <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh" rel="external nofollow" target="_blank">CC BY-NC-SA 4.0</a> 许可协议。转载请注明出处!
</li>
</ul>
<div class="level is-size-7 is-uppercase">
<div class="level-start">
<div class="level-item">
<span class="is-size-6 has-text-grey has-mr-7">#</span>
<a class="has-link-grey -link" href="/tags/nexus/">nexus</a>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<h3 class="menu-label has-text-centered">喜欢这篇文章?打赏一下作者吧</h3>
<div class="buttons is-centered">
<a class="button is-info donate">
<span class="icon is-small">
<i class="fab fa-alipay"></i>
</span>
<span>支付宝</span>
<div class="qrcode"><img src="/images/zhifubao.jpg" alt="支付宝"></div>
</a>
<a class="button is-success donate">
<span class="icon is-small">
<i class="fab fa-weixin"></i>
</span>
<span>微信</span>
<div class="qrcode"><img src="/images/weixin.png" alt="微信"></div>
</a>
</div>
</div>
</div>
<div class="card card-transparent">
<div class="level post-navigation is-flex-wrap is-mobile">
<div class="level-start">
<a class="level level-item has-link-grey article-nav-prev" href="/3194397260.html">
<i class="level-item fas fa-chevron-left"></i>
<span class="level-item">一起学Linux之 shell脚本的服务封装</span>
</a>
</div>
<div class="level-end">
<a class="level level-item has-link-grey article-nav-next" href="/2074530126.html">
<span class="level-item">一起来玩Jenkins之Jenkins的搭建以及项目的构建</span>
<i class="level-item fas fa-chevron-right"></i>
</a>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<h3 class="title is-5 has-text-weight-normal">评论</h3>
<div id="valine-thread" class="content"></div>
<script src="//cdn1.lncld.net/static/js/3.0.4/av-min.js"></script>
<script src='//unpkg.com/valine/dist/Valine.min.js'></script>
<script>
new Valine({
el: '#valine-thread' ,
notify: false,
verify: false,
app_id: '4o2bPCDQdabJ5TDJbzpt8EUh-gzGzoHsz',
app_key: 'A8M41EJDeklLXVPVXUOIJDvu',
placeholder: 'O(∩_∩)O哈哈~'
});
</script>
</div>
</div>
</div>
<div class="column is-4-tablet is-4-desktop is-3-widescreen has-order-1 column-left ">
<div class="card widget">
<div class="card-content">
<nav class="level">
<div class="level-item has-text-centered" style="flex-shrink: 1">
<div>
<figure class="image is-128x128 has-mb-6">
<img class="is-rounded" src="/images/avatar.jpeg" alt="程振奇|smallodd">
</figure>
<p class="is-size-4 is-block">
程振奇|smallodd
</p>
<p class="is-size-6 is-block">
smallodd
</p>
<p class="is-size-6 is-flex is-flex-center has-text-grey">
<i class="fas fa-map-marker-alt has-mr-7"></i>
<span>北京</span>
</p>
</div>
</div>
</nav>
<nav class="level is-mobile">
<div class="level-item has-text-centered is-marginless">
<div>
<p class="heading">
文章
</p>
<p class="title has-text-weight-normal">
27
</p>
</div>
</div>
<div class="level-item has-text-centered is-marginless">
<div>
<p class="heading">
分类
</p>
<p class="title has-text-weight-normal">
2
</p>
</div>
</div>
<div class="level-item has-text-centered is-marginless">
<div>
<p class="heading">
标签
</p>
<p class="title has-text-weight-normal">
6
</p>
</div>
</div>
</nav>
<div class="level">
<a class="level-item button is-link is-rounded" href="https://github.com/smallodd" target="_blank">
关注我</a>
</div>
<div class="level is-mobile">
<a class="level-item button is-white is-marginless" target="_blank"
title="Github" href="https://github.com/smallodd">
<i class="fab fa-github"></i>
</a>
<a class="level-item button is-white is-marginless" target="_blank"
title="Facebook" href="https://facebook.com">
<i class="fab fa-facebook"></i>
</a>
<a class="level-item button is-white is-marginless" target="_blank"
title="Twitter" href="https://twitter.com">
<i class="fab fa-twitter"></i>
</a>
<a class="level-item button is-white is-marginless" target="_blank"
title="Dribbble" href="https://dribbble.com">
<i class="fab fa-dribbble"></i>
</a>
<a class="level-item button is-white is-marginless" target="_blank"
title="RSS" href="/">
<i class="fas fa-rss"></i>
</a>
</div>
</div>
</div>
<div class="card widget column-left is-sticky" id="toc">
<div class="card-content">
<div class="menu">
<h3 class="menu-label">
目录
</h3>
<ul class="menu-list"><li>
<a class="is-flex" href="#前言">
<span class="has-mr-6">1</span>
<span>前言</span>
</a></li><li>
<a class="is-flex" href="#准备">
<span class="has-mr-6">2</span>
<span>准备</span>
</a></li><li>
<a class="is-flex" href="#安装以及启动">
<span class="has-mr-6">3</span>
<span>安装以及启动</span>
</a></li><li>
<a class="is-flex" href="#迁移">
<span class="has-mr-6">4</span>
<span>迁移</span>
</a></li></ul>
</div>
</div>
</div>
<div class="column-right-shadow is-hidden-widescreen ">
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="level">
<div class="level-start has-text-centered-mobile">
<a class="footer-logo is-block has-mb-6" href="/">
<img src="/images/visutech.png" alt="一起来学maven之nexus私服的搭建" height="28">
</a>
<p class="is-size-7">
© 2021 程振奇 | smallodd
|<a href="https://beian.miit.gov.cn" target="_blank">冀ICP备17035647号-1</a> |
Powered by <a href="https://hexo.io/" target="_blank">Hexo</a> & <a
href="https://github.com/ppoffice/hexo-theme-icarus" target="_blank">Icarus</a>
</p>
</div>
<div class="level-end">
<div class="field has-addons is-flex-center-mobile has-mt-5-mobile is-flex-wrap is-flex-middle">
<p class="control">
<a class="button is-white is-large" target="_blank" title="Creative Commons" href="https://creativecommons.org/">
<i class="fab fa-creative-commons"></i>
</a>
</p>
<p class="control">
<a class="button is-white is-large" target="_blank" title="Attribution 4.0 International" href="https://creativecommons.org/licenses/by/4.0/">
<i class="fab fa-creative-commons-by"></i>
</a>
</p>
<p class="control">
<a class="button is-white is-large" target="_blank" title="Download on GitHub" href="https://github.com/ppoffice/hexo-theme-icarus">
<i class="fab fa-github"></i>
</a>
</p>
</div>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome/css/font-awesome.min.css">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/moment@2.22.2/min/moment-with-locales.min.js"></script>
<script>moment.locale("zh-CN");</script>
<script>
var IcarusThemeSettings = {
article: {
highlight: {
clipboard: true,
fold: 'unfolded'
}
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/clipboard@2.0.4/dist/clipboard.min.js" defer></script>
<script src="/js/animation.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lightgallery@1.6.8/dist/js/lightgallery.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/justifiedGallery@3.7.0/dist/js/jquery.justifiedGallery.min.js" defer></script>
<script src="/js/gallery.js" defer></script>
<div id="outdated">
<h6>Your browser is out-of-date!</h6>
<p>Update your browser to view this website correctly. <a id="btnUpdateBrowser" href="http://outdatedbrowser.com/">Update
my browser now </a></p>
<p class="last"><a href="#" id="btnCloseUpdateBrowser" title="Close">×</a></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/outdatedbrowser@1.1.5/outdatedbrowser/outdatedbrowser.min.js" defer></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
outdatedBrowser({
bgColor: '#f25648',
color: '#ffffff',
lowerThan: 'flex'
});
});
</script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@2.7.5/unpacked/MathJax.js?config=TeX-MML-AM_CHTML" defer></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
MathJax.Hub.Config({
'HTML-CSS': {
matchFontHeight: false
},
SVG: {
matchFontHeight: false
},
CommonHTML: {
matchFontHeight: false
},
tex2jax: {
inlineMath: [
['$','$'],
['\\(','\\)']
]
}
});
});
</script>
<a id="back-to-top" title="回到顶端" href="javascript:;">
<i class="fas fa-chevron-up"></i>
</a>
<script src="/js/back-to-top.js" defer></script>
<script src="/js/main.js" defer></script>
<div class="searchbox ins-search">
<div class="searchbox-container ins-search-container">
<div class="searchbox-input-wrapper">
<input type="text" class="searchbox-input ins-search-input" placeholder="想要查找什么..." />
<span class="searchbox-close ins-close ins-selectable"><i class="fa fa-times-circle"></i></span>
</div>
<div class="searchbox-result-wrapper ins-section-wrapper">
<div class="ins-section-container"></div>
</div>
</div>
</div>
<script>
(function (window) {
var INSIGHT_CONFIG = {
TRANSLATION: {
POSTS: '文章',
PAGES: '页面',
CATEGORIES: '分类',
TAGS: '标签',
UNTITLED: '(无标题)',
},
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js" defer></script>
<link rel="stylesheet" href="/css/search.css">
<link rel="stylesheet" href="/css/insight.css">
<script src="/live2dw/lib/L2Dwidget.min.js?094cbace49a39548bed64abff5988b05"></script><script>L2Dwidget.init({"pluginRootPath":"live2dw/","pluginJsPath":"lib/","pluginModelPath":"assets/","tagMode":false,"log":false,"model":{"jsonPath":"/live2dw/assets/z16.model.json"},"display":{"position":"right","width":200,"height":400},"mobile":{"show":true}});</script></body>
</html>