Do you have ethminer on the same computer as your proxy?
Yes, that is correct.
Any more info on how to properly configure Sammy's proxy to run with ethminer on the same machine?
Thanks for any assistance!
Here is my config.json Notice I changed the ports, change them back to what you want.
{
"threads": 2,
"proxy": {
"listen": "0.0.0.0:8546",
"clientTimeout": "3m",
"blockRefreshInterval": "100ms",
"hashrateWindow": "15m",
"submitHashrate": false,
"luckWindow": "24h",
"largeLuckWindow": "72h"
},
"frontend": {
"listen": "0.0.0.0:8081",
"login": "admin",
"password": ""
},
"upstreamCheckInterval": "5s",
"upstream": [
{
"pool": true,
"name": "Suprnova",
"url": "http://eth-us.suprnova.cc:3000/Login.WorkerName/Hashrate",
"timeout": "10s"
}
],
"newrelicEnabled": false,
"newrelicName": "MyEtherProxy",
"newrelicKey": "SECRET_KEY",
"newrelicVerbose": false
}
Here is one of my miner's batch file.
ethminer -G -F http://192.168.0.12:8546/miner/Hashrate/RigName --parameter --parameter
Make sure you don't change the word "miner". This is on a different machine, that's why it uses 192.168.0.12 (address where the proxy is running). You would use 127.0.0.1 for the address. Match up the ports, 8546 (in my case). To view the proxy frontend go to 127.0.0.1:8081 (in my case) or if on another comuter on your local network localIPaddress:8081. If you want to view it remotely, forward port 8081 on your router to the computer running the proxy. If it's still not working then try opening up ports in windows firewall.