Qortal Project

The future of blockchain platforms

User Tools

Site Tools


bootstrap

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
bootstrap [05/06/2021 02:56] thesudiobootstrap [08/06/2021 22:37] gfactor
Line 1: Line 1:
 ====== Bootstrap ====== ====== Bootstrap ======
 +{{:qortal_official_logo_transparent_.png?400|}}
  
 How to bootstrap the Qortal database: Bootstrapping is the process of using a pre made database file to catch up to the current block height. When you first start Qortal, the core will connect to peers to synchronize itself to the blockchain, that means it will download the entire Qortal blockchain. This may take days to complete, if you would like to speed up the process, use the bootstrapped DB. Every now and then the database is trimmed so look out for these updates on Discord and Telegram etc. How to bootstrap the Qortal database: Bootstrapping is the process of using a pre made database file to catch up to the current block height. When you first start Qortal, the core will connect to peers to synchronize itself to the blockchain, that means it will download the entire Qortal blockchain. This may take days to complete, if you would like to speed up the process, use the bootstrapped DB. Every now and then the database is trimmed so look out for these updates on Discord and Telegram etc.
Line 38: Line 39:
 {{ ::qortal_sys_tray.png?nolink&400 |}} {{ ::qortal_sys_tray.png?nolink&400 |}}
  
-===== Mac Guide =====+===== Mac Guide (By Jaymen)=====
  
 1. Open Terminal. Stop your core if you need to:  1. Open Terminal. Stop your core if you need to: 
  
-killall -9 java+<code>killall -9 java</code>
  
 If it show command not found , install it by : If it show command not found , install it by :
  
-apt-get install psmisc +<code>apt-get install psmisc </code>
  
 2.Go to the qortal folder (path varies depends on where you install it): 2.Go to the qortal folder (path varies depends on where you install it):
  
-cd /home/YOUR_USERNAME/qortal+<code>cd /home/YOUR_USERNAME/qortal</code>
  
 4. Remove db folder (Make sure you dont have any trade orders listed): 4. Remove db folder (Make sure you dont have any trade orders listed):
  
-rm -rf db+<code>rm -rf db</code>
  
 5.Download 7zip software : 5.Download 7zip software :
  
-apt-get install p7zip-full+<code>apt-get install p7zip-full</code>
  
 6.Download the latest bootstrap : 6.Download the latest bootstrap :
  
-wget https://qortal.tmgoxford.com/db.7z+<code>wget https://qortal.tmgoxford.com/db.7z</code>
  
 7.Unzip the db.7z : 7.Unzip the db.7z :
  
-7z x db.7z+<code>7z x db.7z</code>
  
 8.Start your core : 8.Start your core :
  
-./start.sh+<code>./start.sh</code>
  
-===== Linux Guide =====+===== Linux Guide (By Jaymen) =====
  
 1. Open Terminal. Stop your core if you need to:  1. Open Terminal. Stop your core if you need to: 
  
-killall -9 java+<code>killall -9 java</code>
  
 If it show command not found , install it by : If it show command not found , install it by :
  
-apt-get install psmisc +<code>apt-get install psmisc </code>
  
 2.Go to the qortal folder (path varies depends on where you install it): 2.Go to the qortal folder (path varies depends on where you install it):
  
-cd /home/YOUR_USERNAME/qortal+<code>cd /home/YOUR_USERNAME/qortal</code>
  
 3.Login with YOUR_USERNAME : 3.Login with YOUR_USERNAME :
  
-su YOUR_USERNAME+<code>su YOUR_USERNAME</code>
  
 4. Remove db folder (Make sure you dont have any trade orders listed): 4. Remove db folder (Make sure you dont have any trade orders listed):
  
-rm -rf db+<code>rm -rf db</code>
  
 5.Download 7zip software : 5.Download 7zip software :
  
-apt-get install p7zip-full+<code>apt-get install p7zip-full</code>
  
 6.Download the latest bootstrap : 6.Download the latest bootstrap :
  
-wget https://qortal.tmgoxford.com/db.7z+<code>wget https://qortal.tmgoxford.com/db.7z</code>
  
 7.Unzip the db.7z : 7.Unzip the db.7z :
  
-7z x db.7z+<code>7z x db.7z</code>
  
 8.Start your core : 8.Start your core :
  
-./start.sh+<code>./start.sh</code>