Problem:
When i want to use miningrigrental.com, my all user name contains dot character and after numbers
example: username.246891
-S and -O parameters is removed i need to use normal Pool URL specification settings, but the first dot separator is defined worker name, i cant escape it.
Pool URL Specification:
URL takes the form: scheme://user[.workername][:password]@hostname:port[/...].
./ethminer -U -P stratum1+tcp://username.246891.rigname:[email protected]:3344
Solutions
maybe can i use escape character
stratum1+tcp://username.246891.rigname:[email protected]:3344
or use ''
stratum1+tcp://'username.246891'.rigname:[email protected]:3344
or use force user name parameter
--forceusername username.246891 and program force sed s/defaultusername/forceusername/
Never used MRR but have you tried this syntax ?
./ethminer -U -P stratum1+tcp://eu-01.miningrigrentals.com:3344/username.246891/rigname
Yes i try but not good
Same as #1075
yes same situation
Andrea Lanfranchi notifications@github.com ezt Ãrta (idÅ‘pont: 2018. nov.
19., H, 9:11):
Same as #1075 https://github.com/ethereum-mining/ethminer/issues/1075
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/ethereum-mining/ethminer/issues/1687#issuecomment-439792759,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ArDD4ssSlu6IenMXCdWXyZ5ud_lzuB8Mks5uwlm7gaJpZM4Yn1LS
.
With commit e6f23dc020b970b91d8d5754dffbdb6277357871 it should be able to pass a "." within username and workername using "%2e" which means:
use ./ethminer -U -P stratum1+tcp://username%2e246891.rigname:[email protected]:3344 with an actual build to solve the problem
not :
./ethminer -U -P stratum1+tcp://
username%2e100011.rigName:[email protected]:3344 -v 3
i 16:17:44 main Selected pool eu-01.miningrigrentals.com:3344
i 16:17:44 stratum {
"id" : 1,
"method" : "eth_submitLogin",
"params" :
[
"username"
],
"worker" : "100011."
}
i 16:17:45 stratum {
"error" :
[
20,
"Client Pre-authorization was not accepted (incorrect workername,
check your settings).",
null
],
Stefan Oberhumer notifications@github.com ezt Ãrta (idÅ‘pont: 2018. nov.
23., P, 9:15):
With commit e6f23dc
https://github.com/ethereum-mining/ethminer/commit/e6f23dc020b970b91d8d5754dffbdb6277357871
it should be able to pass a "." within username and workername using "%2e"
which means:use ./ethminer -U -P stratum1+tcp://
username%2e246891.rigname:[email protected]:3344 with an
actual build to solve the problem—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/ethereum-mining/ethminer/issues/1687#issuecomment-441168646,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ArDD4uwQJBfcEO2-2-uKiLtHXN1uCwK5ks5ux6CggaJpZM4Yn1LS
.
@pit55
Are you sure using a build after my commit ?
It seems you're using the official release build! (eg out of -v 3 has been changed since last official build)
official yes
Stefan Oberhumer notifications@github.com ezt Ãrta (idÅ‘pont: 2018. nov.
23., P, 20:22):
@pit55 https://github.com/pit55
Are you sure using a build after my commit ?
It seems you're using the official release build! (eg out of -v 3 has been
changed since last official build)—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/ethereum-mining/ethminer/issues/1687#issuecomment-441299241,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ArDD4nLNvAng4LJ6LQpQE9nE7O-rXdSjks5uyDzhgaJpZM4Yn1LS
.
official yes
Ah - OK - The fix is not included in the latest available official release.
Seems you have to compile it yourself or wait for a new official release (#1686 )
yes i wait thank you
Stefan Oberhumer notifications@github.com ezt Ãrta (idÅ‘pont: 2018. nov.
24., Szo, 10:03):
official yes
Ah - OK - The fix is not included in the latest available official release.
Seems you have to compile it yourself or wait for a new official release (1686 https://github.com/ethereum-mining/ethminer/issues/1686 )
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/ethereum-mining/ethminer/issues/1687#issuecomment-441350896,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ArDD4gkMYdx_I0OkdQns0mx-jHUhi5Kfks5uyP1AgaJpZM4Yn1LS
.
@pit55
As info: It seems new official release are available - check the release page https://github.com/ethereum-mining/ethminer/releases
Most helpful comment
yes same situation
Andrea Lanfranchi notifications@github.com ezt Ãrta (idÅ‘pont: 2018. nov.
19., H, 9:11):