aboutsummaryrefslogtreecommitdiff
path: root/doc/doc.RPKI.Installation.DebianPackages
diff options
context:
space:
mode:
authorRPKI Documentation Robot <docbot@rpki.net>2013-09-28 16:00:15 +0000
committerRPKI Documentation Robot <docbot@rpki.net>2013-09-28 16:00:15 +0000
commita3341e3dc8b8ed00b6a7ba37f9a1e0bab443a0cd (patch)
tree09b4cf991404497c5c914bda03c039f801768e15 /doc/doc.RPKI.Installation.DebianPackages
parent028008d51cf97e2535067dca7a2bab401796fd2b (diff)
Automatic pull of documentation from Wiki.
svn path=/trunk/; revision=5528
Diffstat (limited to 'doc/doc.RPKI.Installation.DebianPackages')
-rw-r--r--doc/doc.RPKI.Installation.DebianPackages67
1 files changed, 67 insertions, 0 deletions
diff --git a/doc/doc.RPKI.Installation.DebianPackages b/doc/doc.RPKI.Installation.DebianPackages
new file mode 100644
index 00000000..44ae0945
--- /dev/null
+++ b/doc/doc.RPKI.Installation.DebianPackages
@@ -0,0 +1,67 @@
+****** Installation Using Debian Packages on Debian and Ubuntu Systems ******
+
+Precompiled binary packages for Ubuntu 12.04 LTS ("Precise Pangolin") and
+Debian 7 ("Wheezy") are available from download.rpki.net using the Debian
+Advanced Package Tools (APT). To use these, you need to configure APT on your
+machine to know about our APT repository, but once you've done this you should
+be able to install and update these packages like any other precompiled
+package.
+
+***** Initial APT Setup *****
+
+You should only need to perform these steps once for any particular machine.
+
+* Add the GPG public key for this repository (optional, but APT will whine
+ unless you do this):
+
+ wget -q -O - http://download.rpki.net/APT/apt-gpg-key.asc | sudo apt-key
+ add -
+
+* Configure APT to use this repository (for Ubuntu systems):
+
+ sudo wget -q -O /etc/apt/sources.list.d/rpki.list http://download.rpki.net/
+ APT/rpki.ubuntu.list
+
+* Configure APT to use this repository (for Debian systems):
+
+ sudo wget -q -O /etc/apt/sources.list.d/rpki.list http://download.rpki.net/
+ APT/rpki.debian.list
+
+***** Installation Using APT Tools *****
+
+These instructions assume that you're using apt-get. Other APT tools such as
+aptitude should also work.
+
+* Update available packages:
+
+ sudo apt-get update
+
+* Install the software:
+
+ sudo apt-get install rpki-rp rpki-ca
+
+* Customize the default rpki.conf for your environment as necessary. In
+ particular, you want to change handle and rpkid_server_host. There are
+ obsessively detailed instructions.
+
+ sudo emacs /etc/rpki.conf
+
+ Again, you want to change handle and rpkid_server_host at the
+ minimum.
+
+* If you changed anything in rpki.conf, you should restart the RPKI CA service:
+
+ sudo initctl restart rpki-ca
+
+***** Upgrading *****
+
+Once you've performced the steps above you should be able to upgrade to newer
+version of the code using the normal APT upgrade process, eg:
+
+ sudo apt-get update
+ sudo apt-get upgrade
+
+Or, if you only want to update the RPKI tools:
+
+ sudo apt-get update
+ sudo apt-get upgrade
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