Replies: 1 comment
-
windows远程 ./run_farmer.sh -n node.ip:11330 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Remote Services
These steps are provided for farming on many machines on a single local area network, or even over a wide area network.
Remote Farmer
To run a remote farmer with it's own wallet and harvester:
./run_farmer.sh -n node.ip:11330
Alternatively to set the node address permanently: echo node.ip:11330 > config/local/node
To disable the built-in farmer in the node: echo false > config/local/farmer
Remote Harvester
To run a remote harvester, while connecting to a node:
./run_harvester.sh -n node.ip:11330
Alternatively to set the node address permanently: echo node.ip:11330 > config/local/node
To run a remote harvester, while connecting to a remote farmer:
./run_harvester.sh -n farmer.ip:11333
Alternatively to set the farmer address permanently: echo farmer.ip:11333 > config/local/node
To disable the built-in harvester in the node: echo false > config/local/harvester
Remote Timelord
To run a remote timelord:
./run_timelord.sh -n node.ip:11330
Alternatively to set the node address permanently: echo node.ip:11330 > config/local/node
To disable the built-in timelord in the node: echo false > config/local/timelord 这些具体怎么操作,找不到命令
Beta Was this translation helpful? Give feedback.
All reactions