Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.85 KB

adding-the-sdf-stable-repository-to-your-system.md

File metadata and controls

47 lines (32 loc) · 1.85 KB

SDF - packages

  1. Adding the SDF stable repository to your system
  2. Quickstart
  3. Installing individual packages
  4. Upgrading
  5. Running Horizon in production
  6. Building Packages
  7. Running a Full Validator
  8. Publishing a History archive
  9. Backfilling a History archive
  10. Monitoring
  11. Testnet Reset

Adding the SDF stable repository to your system

In order to use our repository you will need to add our GPG public key to your system and create a sources file.

The key we use (A136B5A6), is available from https://pgp.mit.edu with fingerprint:

AEAF 01EE A6CA FCEF DDAE 8AA7 0463 8272 A136 B5A6

Download and install the public signing key:

wget -qO - https://apt.stellar.org/SDF.asc | sudo apt-key add -

Save the repository definition to /etc/apt/sources.list.d/SDF.list:

echo "deb https://apt.stellar.org $(lsb_release -cs) stable" | sudo tee -a /etc/apt/sources.list.d/SDF.list

Please note we only support Ubuntu LTS releases.

Adding the Bleeding Edge Testing Repository

If you would like to install our Release Candidates and/or track the Master branch, you can do so by using our testing repository. As the name indicates this repository and it's packages are not recommended for production deployments. Use at your own risk.

Save the testing repository definition to /etc/apt/sources.list.d/SDF-testing.list:

echo "deb https://apt.stellar.org $(lsb_release -cs) testing" | sudo tee -a /etc/apt/sources.list.d/SDF-testing.list

Please note we only support Ubuntu LTS releases.