Browse Source

typos & formatting

pull/5/head
oDinZu 3 years ago
parent
commit
c47d994437
  1. 20
      mining/solo-mining.md

20
mining/solo-mining.md

@ -20,7 +20,7 @@ For this setup we will have our computer running hushd and we will have our ASIC
First we need to setup the Hush configuration on our computer.
1. Open your HUSH3.conf, which should be located in your home directory at ~/.komodo/HUSH3/HUSH3.conf.
1. Open your HUSH3.conf, which should be located in your home directory at `~/.hush/HUSH3/HUSH3.conf`.
1. Make sure you add the IP address of your ASIC miner into the conf file. The following is an example using 192.168.33.66 as the ASIC miner's IP:
```
@ -34,8 +34,8 @@ First we need to setup the Hush configuration on our computer.
rpcallowip=192.168.33.66
rpcbind=127.0.0.1
```
Change the `rpcuser` and `rpcpassword` above to something unique as it will be used later.
Change the ```rpcuser``` and ```rpcpassword``` above to something unique as it will be used later.
Note: If you had more than 1 ASIC, then each one would get it's own rpcallowip line item.
1. If you have a firewall enabled on your computer like UFW, we must give access to the ASIC device on the proper port of stratum server.
@ -45,7 +45,6 @@ First we need to setup the Hush configuration on our computer.
sudo ufw reload
sudo ufw status
```
Note: If you have AI protection on your asus router, you may need to disable this if your ASIC isn't connecting to live pool or your local stratum pool.
1. Next, we start the hush daemon (hushd) at the command line with special options to enable a stratum server and output a hush-stratum.log in current directory. The `-stratumaddress` option is used to add extra security, plus as a benefit, if you have many miners, the only address you will need to update is the -stratumaddress to work for all miners on your hush node.
@ -58,13 +57,10 @@ First we need to setup the Hush configuration on our computer.
1. For security and troubleshooting, it is always important to have logs.
- View hush daemon logs
``tail -f ~/.hush/HUSH3/debug.log`
- View system logs
`sudo journalctl -f`
- View stratum logs
`tail -f hush-stratum.log`
- View hush daemon logs `tail -f ~/.hush/HUSH3/debug.log`
- View system logs `sudo journalctl -f`
- View stratum logs `tail -f hush-stratum.log`
1. Check that the stratum is started by seeing that it is listening on the correct port (default 19031).
```
@ -91,9 +87,9 @@ First we need to setup the Hush configuration on our computer.
1. Setup your "pool" as follows with this example using 192.168.33.101 as the desktop computer's IP address.
- Under Pool 1
- Change URL to "stratum+tcp://192.168.33.101:19031"
- Change URL to `stratum+tcp://192.168.33.101:19031`
- Change Worker to `x` from your Hush wallet. It's also a good idea to create and use new addresses every so often for better privacy.
- Change Password to whatever you want, some just use "X"
- Change Password to whatever you want, some just use `X`
- Under Pool 2 & Pool 3 we leave as-is

Loading…
Cancel
Save