Run an Aleph node on the testnet for validating transactions with these instructions.
File descriptor limit
Since you are not running the node in a docker, there is one additional OS level configuration you have to take care of. The node uses a lot of file descriptors, both for network connections as well as database handling. To check the limit run:
ulimit-Hn
If the returned value is at least 10000 you are set. Otherwise increase the limit to the recommended value by running:
DESCRIPTOR_CONFIG="$USER hard nofile 10000"sudoecho $DESCRIPTOR_CONFIG >>/etc/security/limits.conf
Relogin and check the limit again to ensure the change took effect.
Run!
First, source the script you created two chapters back and set the config variables:
sourceset_env.sh
Once all of the variables mentioned in the previous chapters are set, you can start the node with the following command: