-
Notifications
You must be signed in to change notification settings - Fork 2
/
populating.html
59 lines (59 loc) · 2.13 KB
/
populating.html
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
<!DOCTYPE html>
<html>
<head>
<title>Hockeypuck</title>
<link type="text/css" rel="stylesheet" href="static/article.css">
<meta charset='utf-8'>
</head>
<body>
<div id="topbar" class="wide">
<div class="container">
<div id="heading">Hockeypuck
OpenPGP Public Keyserver
</div>
</div>
</div>
<div id="page" class="wide">
<div class="container">
<div id="toc">
<ul>
<li><a href="#TOC_1.">Populating</a></li>
<ul>
<li><a href="#TOC_1.1.">Fetch a dump of recent keyfiles</a></li>
<li><a href="#TOC_1.2.">Stop the Hockeypuck service</a></li>
<li><a href="#TOC_1.3.">Load keyfiles</a></li>
<li><a href="#TOC_1.4.">Start the Hockeypuck service</a></li>
</ul>
</ul>
</div>
<h1 id="TOC_1.">1. Populating</h1>
<p>
If you want Hockeypuck to peer with other keyservers, you will need to populate
your Hockeypuck instance to share as many public keys with prospective peers as
possible before joining a pool of synchronizing key servers.
</p>
<h2 id="TOC_1.1.">1.1. Fetch a dump of recent keyfiles</h2>
<p>
A partial list of current dumps is maintained
<a href="https://github.com/hockeypuck/hockeypuck/blob/master/contrib/data-sources.md" target="_blank">in the project contrib folder</a>.
</p>
<h2 id="TOC_1.2.">1.2. Stop the Hockeypuck service</h2>
<h2 id="TOC_1.3.">1.3. Load keyfiles</h2>
<div class="code"><pre>hockeypuck-load -config /etc/hockeypuck/hockeypuck.conf /path/to/keyfiles/\*.pgp
hockeypuck-pbuild -config /etc/hockeypuck/hockeypuck.conf</pre></div>
<p>
If you installed from PPA on Ubuntu, you'll want to do this as the <code>hockeypuck</code> user:
</p>
<div class="code"><pre>su - hockeypuck -c 'hockeypuck-load -config /etc/hockeypuck/hockeypuck.conf /path/to/keyfiles/\*.pgp'</pre></div>
<h2 id="TOC_1.4.">1.4. Start the Hockeypuck service</h2>
<h2>Authors</h2>
<div class="author">
<p>
Casey Marshall
</p>
<p class="link"><a href="https://hockeypuck.io/" target="_blank">https://hockeypuck.io/</a></p>
</div>
</div>
</div>
</body>
</html>