Qortal Project

The future of blockchain platforms

User Tools

Site Tools


Sidebar

Qortal Project Wiki

Important Notices

Introduction

Project Model

Minting

Communications

Trade Portal

Qortal Hosting (QDN)

Voting System

AT System

Hardware

Frequently Asked Questions (FAQ)

How-To Guides

Node Setup Guides

Third-Party Services

qortector_update_guide

This is an old revision of the document!


QORTector Update Guide

This is a guide for updating the QORTector.

How To Update The Core

This will remove all the log files, download the newest version of the qortal.jar, and force a bootstrap:

cd && cd qortal && ./stop.sh && rm qortal.jar && curl -L -O https://github.com/Qortal/qortal/releases/latest/download/qortal.jar && ./start.sh

How To Update The DB & Bootstrap

How To Update The UI

To update the UI, open the UI. If there is an update available, you'll see a notification like the screenshot below:

Followed by the screenshot below, where you'll have the option to restart now or update upon closing the UI:

Port Forwarding

If you have admin access to your router, you should configure port forwarding for the QORTector. Refer to the Port Forwarding page on how to do so.

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 file. Simply 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):

{
"apiDocumentationEnabled": false,
"apiEnabled": true,
"apiRestricted": false,
"autoUpdateEnabled": true,
"minBlockchainPeers": 3,
"minOutboundPeers": 16,
"maxPeers": 16,
"listenPort": 12392,
"allowConnectionsWithOlderPeerVersions": false
}
qortector_update_guide.1664258119.txt.gz · Last modified: 09/27/2022 01:55 by gfactor