Validator Node Setup Prerequisites
Last updated
Was this helpful?
Last updated
Was this helpful?
For clarity, you may wish to use identical usernames on your Ansible Control Station and your remote node. For example, one could create a user named "ubuntu" on both your Ansible Control Station and your remote note. If you have the means, using a dedicated node for the Ansible Control Station that can be powered down or moved off-network when not in use is ideal. If using a local workstation, creating and using a dedicated Ansible Control Station user reduces potential for error. When you create a new local user (we recommend using our example 'ubuntu' username), ensure this user has sudo or su (Super User) authority on the Ansible Control Station. The rest of this example assumes your user is in the sudo group.
check that you have git installed
if not - install it following instructions
check that you have python 2 version >= 2.6.5 or python 3 version >= 3.3 installed
if not - install it choosing appropriate binary from
check if you have pip
python package manager install
if not - install it following instructions from . Basically, you need to download this script and save it on your computer then run
follow to install ansible. For example, you can use pip
to do it:
use pip
to install the following packages:
check if you already have a keypair:
if you get error that directory does not exist or the directory is empty, you need to follow the instructions below. If you already have key pair, you can skip this section.
generate ssh key-pair
insert your email address there and a strong password. By default, keys will be saved to ~/.ssh/
and named id_rsa
with your public key being ~/.ssh/id_rsa.pub
.
check if you have aws cli installed
Mac systems with homebrew installed:
if not - install it following . The simplest way is to use pip
:
Continue to