Qortal Project

The future of blockchain platforms

User Tools

Site Tools


qortector_update_guide

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
qortector_update_guide [09/12/2022 15:15] gfactorqortector_update_guide [05/22/2023 14:05] (current) quickmythril
Line 6: Line 6:
 ===== How To Update The Core===== ===== How To Update The Core=====
  
-This will remove all the log files, download the newest version of the qortal.jar, remove the db, and force a bootstrap:+This will remove all the log files, download the newest version of the qortal.jar:
  
-<code>cd && wget https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/refresh-qortal.sh && chmod +x refresh*.sh && ./refresh-qortal.sh</code>+<code>cd && cd qortal && ./stop.sh && rm qortal.jar && curl -L -O https://github.com/Qortal/qortal/releases/latest/download/qortal.jar && ./start.sh</code> 
 + 
 +===== How To Update The DB & Bootstrap ===== 
 + 
 +Go to the [[How To Bootstrap & Delete The DB]] page. 
 + 
 +===== How To Update Core & Bootstrap In One Command ===== 
 + 
 +If you’d like, you can simply replace the core and db (to bootstrap) all in one command. A bootstrap is a download of a database that is updated every 12 hours so that you only have to sync the remaining blocks from the latest bootstrap creation. You will notice several 0-100% processes during the popup screen, then you will need to wait for it to finish synchronizing which will continue after the popup has closed::  
 + 
 +<code> cd && cd qortal && ./stop.sh && rm qortal.jar && rm -R db && curl -L -O https://github.com/Qortal/qortal/releases/latest/download/qortal.jar && ./start.sh</code>
  
 ===== How To Update The UI ===== ===== How To Update The UI =====
Line 26: Line 36:
 ===== Adjusting json Settings For Low Bandwidth ===== ===== Adjusting json Settings For Low Bandwidth =====
  
-For those who have low bandwidth internet service, you will want to reduce your peer settings in the json fileSimply change the minBlockchainPeers to 3, and the maxPeers to 16 as seen below (or just copy and paste the code below into your json file - replacing what is there currently): +Go to the [[How To Reduce Bandwidth]] page.
- +
-<code>+
-"apiDocumentationEnabled": false, +
-"apiEnabled": true, +
-"apiRestricted": false, +
-"autoUpdateEnabled": true, +
-"minBlockchainPeers": 3, +
-"minOutboundPeers": 16, +
-"maxPeers": 16, +
-"listenPort": 12392, +
-"allowConnectionsWithOlderPeerVersions": false +
-}</code>+
qortector_update_guide.1663010109.txt.gz · Last modified: 09/12/2022 15:15 by gfactor