If you install the Worker node via Docker, please initialize and run it using Docker as well. If you install the Worker node through a local installation, please refer to the local operation section.
You have to deposit a small amount of the testnet Sol (wSOL) into the worker account to facilitate the sending of a confirmation transaction.
Run Node via Docker (Recommended)
There are three steps to complete when starting a Worker node via Docker:
Export Node Environment Variables
Initialize Node Configuration
Launch the Node
Export Node Environment Variables
To streamline the Docker installation procedure, we utilize certain environment variables. These variables are crucial for the operation of the FuLink Worker.
Select a password with at least 8 characters to lock and unlock the private storage created by the FuLink Worker. It's important to remember this password for future access.
This password is used to unlock the keystore file of your Worker account. You would have established this password when creating the Worker account via Geth. Make sure you enter the same one!!!
# step 1
Detected IPv4 address (8.219.186.125) - Is this the public-facing address of Ursula? [y/N]: y
Please provide a password to lock Operator keys.
Do not forget this password, and ideally store it using a password manager.
# step 2
Enter fulink keystore password (8 character minimum): xxxxxx
Repeat for confirmation: xxxxxx
Backup your seed words, you will not be able to view them again.
xxxxxxxxxxxxxxxxxxxxxxxx
# step 3
Have you backed up your seed phrase? [y/N]: y
# step 4
Confirm seed words: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Public Key: 02bb2067d21a677ce928967c0ece79a9
Path to Keystore: /home/circleci/.local/share/fulink/keystore
- You can share your public key with anyone. Others need it to interact with you.
- Never share secret keys with anyone!
- Backup your keystore! Character keys are required to interact with the protocol!
- Remember your password! Without the password, it's impossible to decrypt the key!
Generated configuration file at default filepath /home/circleci/.local/share/fulink/ursula.json
* Review configuration -> fulink ursula config
* Start working -> fulink ursula run
Launch the Node
Before performing this step, make sure that the environment variable has been set successfully. You can verify it using the following method, execute the following command:
The following command will start the node. Make sure you use the same host directory as the configuration.
Remark1: You need to claim some SOL(test) token for Worker account as gas fee.
Remark2: If you encounter error when starting Worker node, first please check that the port 9151 has not been occupied by other process. If still not working, please check there is only one configuration json file in the </path/to/host/machine/directory>
# step 1
Detected IPv4 address (8.219.188.70) - Is this the public-facing address of Worker? [y/N]: y
Please provide a password to lock Operator keys.
Do not forget this password, and ideally store it using a password manager.
# step 2
Enter fulink keystore password (8 character minimum): xxxxxx
Repeat for confirmation: xxxxxx
Backup your seed words, you will not be able to view them again.
hammer fatal jazz era hurt shoulder stand story find move earn much actor animal stamp know vital odor coin electric torch quick siege tonight
# step 3
Have you backed up your seed phrase? [y/N]: y
# step 4
Confirm seed words: hammer fatal jazz era hurt shoulder stand story find move earn much actor animal stamp know vital odor coin electric torch quick siege tonight
Generated keystore
Public Key: 02dacea4c7f5563004af37f282ca10f7
Path to Keystore: /root/.local/share/fulink/keystore
- You can share your public key with anyone. Others need it to interact with you.
- Never share secret keys with anyone!
- Backup your keystore! Character keys are required to interact with the protocol!
- Remember your password! Without the password, it's impossible to decrypt the key!
Generated configuration file at non-default filepath /root/.local/share/fulink/ursula-02dacea4.json
* NOTE: for a non-default configuration filepath use `--config-file "/root/.local/share/fulink/ursula-02dacea4.json"` with subsequent `ursula` CLI commands
* Review configuration -> fulink ursula config
* Start working -> fulink ursula run
Launch the Node
Run worker node using the initialized configuration.
screen -S fulink-worker // use this command if you want to run the worker node in a screen session
fulink ursula run --no-block-until-ready
Enter the above startup command and press enter to prompt for the passwords of ETH account and FuLink keystore, which are set in the initialization phase.
Note: operator account needs to have tokens on the corresponding chain
Example Input:
fulink ursula run --no-block-until-ready
Example Output:
Enter ethereum account password (0x7bD7B1266868B34dA4929501FfEA4ac737dA0E93):
Enter fulink keystore password:
Authenticating Ursula
Loaded Ursula (horus)
✓ External IP matches configuration
Starting services
✓ Node Discovery (Horus)
✓ Operator 0x7bD7B1266868B34dA4929501FfEA4ac737dA0E93 is funded with 0.499959405 ETH
✓ Operator 0x7bD7B1266868B34dA4929501FfEA4ac737dA0E93 is bonded to staking provider 0xf3D6ad89E34b1Cf8325EA614fa901eA4F34Be14a
✓ Operator already confirmed. Not starting worktracker.
✓ Start Operator Bonded Tracker
✓ Rest Server https://8.219.188.70:9151
Working ~ Keep Ursula Online!
Now the Worker address(e.g: 0x7bD7B1266868B34dA4929501FfEA4ac737dA0E93) is ready for bonding operation.
Restart the Worker Node
Occasionally, the staker may find it necessary to restart the worker node. Below is the command for restarting the currently running nodes:
screen -x fulink-worker // use this command if you run the worker node in a screen session
press ctrl+c
fulink ursula run --rest-port 9151 --no-block-until-ready