- Adding the SDF stable repository to your system
- Quickstart
- Installing individual packages
- Upgrading
- Running Horizon in production
- Building Packages
- Running a Full Validator
- Publishing a History archive
- Backfilling a History archive
- Monitoring
- Testnet Reset
The Testnet network is reset quarterly by the Stellar Development Foundation. The exact date will be announced with at least two weeks notice on the Stellar Dashboard as well as on several of Stellar’s online developer communities.
The reset will always occur at 09:00 UTC on the announced reset date.
Post reset you will need to perform a small maintenance in order to join/synch to the new network:
- stop stellar-core
# sudo systemctl stop stellar-core
- clear/recreate
stellar
database
# sudo -u stellar psql -c 'DROP DATABASE stellar' postgres
# sudo -u stellar psql -c 'CREATE DATABASE stellar' postgres
- re-initialise
stellar
db schema
# sudo -u stellar stellar-core --conf /etc/stellar/stellar-core.cfg new-db
- optionally re-init your history archives (only required if you publish your own archives)
# sudo -u stellar stellar-core --conf /etc/stellar/stellar-core.cfg new-hist ARCHIVE_NAME
- start stellar-core
# sudo systemctl start stellar-core
- stop stellar-horizon
# sudo systemctl stop stellar-horizon
- clear/recreate
horizon
database
# sudo -u stellar psql -c 'DROP DATABASE horizon'
# sudo -u stellar psql -c 'CREATE DATABASE horizon'
- re-initialise
horizon
db schema
# sudo stellar-horizon-cmd db init
- start stellar-horizon
# sudo systemctl start stellar-horizon