Bootstrap - Steps to Install a Bootstrap¶
These instructions are intended for anyone that wants to speed up the synchronization process when installing the wallet for the first time or to resolve issues with a wallet that has forked onto the wrong chain.
Downloading the Bootstrap from a PC or MAC¶
This section is intended for those that want to install the bootstrap on a PC or MAC.
Close the Rupaya wallet. Be sure that it is completely closed before proceeding.
Open the following URL in a web browser to download the zip file containing the bootstrap:
- Open the file named rupx0bootstrap-16.xip and extract the folders and files to the RupayaCore folder.
- Mac: ~/Library/Application Support/RupayaCore
- or ~/Library/Application Support/Rupaya
- Windows: ~/AppData/Roaming/RupayaCore
- or ~/AppData/Roaming/Rupaya
- If prompted, confirm that you want to replace the existing file(s).
Restart the Rupaya wallet.
- The installation of the bootstrap is now complete.
Download the Bootstrap from a Linux VPS Using a Bash Script¶
This section is intended for those that want to install the bootstrap on a Linux VPS using a bash script, which will automate the process.
Warning
Only do this on a Linux VPS Hot Wallet that does not contain RUPX or zRUPX, or you will lose your coins.
- Login to the Linux VPS as the user that will be running the wallet.
- Run the following commands, one at a time, to download and run the bash script:
For those running the wallet as the user rupxmn, use the following commands:
wget https://raw.githubusercontent.com/BlockchainBrain/Rupaya_Bootstrap/master/rupxmn-bootstrap.sh sudo bash rupxmn-bootstrap.sh
For those running the wallet as the user root, use the following commands:
wget https://raw.githubusercontent.com/BlockchainBrain/Rupaya_Bootstrap/master/root-bootstrap.sh bash root-bootstrap.sh
Verify that the wallet is running and that the block count is above 177000:
rupaya-cli getinfo
- NOTE: It may take a few minutes for connections to bgin to establish. Don’t be alarmed if the initial output shows “blocks”: -1
Download the Bootstrap Manually from a Linux VPS¶
This section is intended for those that want to manually install the bootstrap on a Linux VPS. YOU DO NOT NEED TO REPEAT THIS STEP IF YOU ALREADY INSTALLED THE BOOTSTRAP USING THE BASH SCRIPT.
Warning
Only do this on a Linux VPS Hot Wallet that does not contain RUPX or zRUPX, or you will lose your coins.
Login to the Linux VPS as the user that will be running the wallet.
Close the Rupaya wallet:
rupaya-cli stop && sleep 10
Run the following commands to delete the old rupayacore files and folders:
cp ~/.rupayacore/rupaya.conf . sudo rm -rf ~/.rupayacore mkdir ~/.rupayacore mv rupaya.conf ~/.rupayacore/.
Run the following command to download the bootstrap:
wget https://www.dropbox.com/s/hqmmf5wo6gpbq1b/rupx-bootstrap-160119.zip
Install Unzip:
apt-get install unzip -y
Unzip the bootstrap folders and files into the .rupayacore folder:
unzip rupx-bootstrap-160119.zip -d ~/.rupayacore
Restart the wallet:
rupayad -daemon
Delete the bootstrap.zip file:
rm rupx-bootstrap-160119.zip