I have Ubuntu 16.04, build from 0.2.5 - beta without errors test pass. But if start server, redis not works -- [Error] [RedisProvider] [Bitcoin] Redis storage initialization failed: 127.0.0.1:6379 this metod is not implemet in this class. All config is good, mysql works . Any idea?
Hi,
i had the same error.
I tryed different verisons of redis...
Have you find some work around?
I've tested now on Windows.
Mining local works fine but remote didn't.
The Problem with Redis had i solved with out commet the version Check in:
\src\CoiniumServ\Persistance\Providers\Redis\RedisProvider.cs
// check the version
//var version = GetVersion();
//if (version < _requiredMinimumVersion)
// throw new Exception(string.Format("You are using redis version {0}, minimum required version is 2.6", version));
//_logger.Information("Redis storage initialized: {0:l}:{1}, v{2:l}.", _config.Host, _config.Port, version);
I think the version Check was a Problem on Linux, Windows works fine withou change.
But i cant connect my miner to the Server on Linux, website ok.
config for Stratum is:
"stratum": {
"enabled": true,
"bind": "",
"diff": 16,
"vardiff": {
"enabled": true,
"minDiff": 8,
"maxDiff": 512,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30
}
this settings works only local on windows... Any Idea?