FadedSun

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by FadedSun

  1. I ended up adding the pool on the Windows Chia client. The wallet change synced through to Machinaris, so I think I'm good to go now
  2. Yup my wallet is like yours on the self pool. Still fails to join the real pool, even after hours. Either there's something wrong with the plotnft command (it has a slightly different set of arguments than the self pool), or is it possible the url isn't working correctly right now? Either way I'll just keep self mining until I figure this out. I'm generally pretty tech literate, but this Chia is streaching my knowledge a bit.
  3. Thanks for the reply. I have 2 Wallet IDs since the Machinaris update, one says chia, the other flax. The both say Wallet ID 1, is this an issue?
  4. Can anyone explain this to me when trying to join a pool? chia plotnft - log output /chia-blockchain/venv/bin/chia plotnft create -y -u https://northamerica.ecochia.io -s pool --> Executed at: 20210710-093810 Exception from 'wallet' Incorrect version: 1, should be 1 **********************************************************************
  5. Edit: nevermind I found it under workers tab and pruned the unresponsive workers. After the update I'm showing 3 farmers and 3x the plots. Any ideas on this? 2 of the farmer logs appear empty.
  6. I have phpMyAdmin running in a separate docker. It can connect to the MariaDB, but I can't create (or view users). This is a fresh install. I've tried a lot of suggestions from google searches but honestly I'm pretty new at this and at a loss. I've uninstalled the docker and deleted it's app directory a few times to make sure I haven't made anything worse. Attached image is logged in as root.
  7. I haven't read the last few pages so maybe this work around to access docker containers has already been posted. I added the following to to my iptables on my router. iptables -t nat -A PREROUTING -d 192.168.20.13 -j DNAT --to 192.168.2.13 iptables -t nat -A POSTROUTING -s 192.168.2.13 -d 10.253.0.0/24 -j SNAT --to 192.168.20.13 192.168.2.13 in this case is my actual pihole docker. 192.168.20.13 is a fake private network IP address. You can choose any private ip address that's not actually used on your network. I just chose to turn 2 to 20 for simplicity. then set your peer dns in wireguard to the fake ip address What happens: 1. when a request comes in on the fake address unraid doesn't know where to route it so sends it to your default gateway 2. your router sees the fake destination and changes it to your real pihole and routes it 3. pihole responds to the default gateway because it doesn't know where 10.253.0.0/24 is 4. the router sees the POSTROUTING rule and changes the source IP from pihole to the fake IP so your device gets the response from the same fake IP it requested it from. This also means if you want to go to the admin interface it's at the fake ip 192.168.20.13/admin in my case. This should work for all dockers, you just have to add entries in iptables for each. Now that I think of it, i should have added -s 10.253.0.0/24 to the PREROUTING so it was only rerouting for the wireguard ips, but that shouldn't hurt anything.