- Choose a cloud instance based on the requirements specified in here
- The estimated cost is about 80-100 USD per month
- f(x)Core is system agnostic but Ubuntu is preferred
Remoting into the cloud server
- For windows users, download Gitbash or Putty (Gitbash is preferred).
- For Mac and linux users, you can connect via the terminal More instructions below: https://kinsta.com/blog/how-to-use-ssh/
- Once setup, ssh into the cloud instance ssh
<ssh_id>@<IP address>
eg.
Running the command ssh -L 127.0.0.1:26657:127.0.0.1:26657<ssh_id>@<IP address>
connects your local port 26657 with your cloud's port 26657. This is just one of the way you can connect your local machine with your cloud instance to connect your HD wallets. The command should look something like:
ssh -L 127.0.0.1:26657:127.0.0.1:26657 [email protected]
{% hint style="info" %} You must ensure you have fxcored installed in your local machine. {% endhint %}
Alternatively, you can add the
--node flag
and ensure that your IP address has either been whitelisted or your port is open. Also you can consider configuring your config.toml file to set your node up.