Ergo Pool won't run #1042
Replies: 5 comments 33 replies
-
Please post the (redacted) output of: |
Beta Was this translation helpful? Give feedback.
-
The pool wouldn't come up if that wasn't correct. Can you post the stats GC crash callstack? |
Beta Was this translation helpful? Give feedback.
-
Well it actually happens after less than 30 seconds. Looks like MC is unable to talk to the Ergo daemon. The daemon is probably not reachable from the machine running the pool. |
Beta Was this translation helpful? Give feedback.
-
That's what I'm trying to figure out. The ergo node is running on the same
machine. Is there a specific setting I'm missing in the ergo.conf file
maybe?
…On Wed, Dec 15, 2021, 5:55 PM Oliver Weichhold ***@***.***> wrote:
Well it actually happens after less than 30 seconds. Looks like MC is
unable to talk to the Ergo daemon. The daemon is probably not reachable
from the machine running the pool.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1042 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAIAKRQ7IVISBZ3WU36Q733UREMEPANCNFSM5KDQJ2WQ>
.
|
Beta Was this translation helpful? Give feedback.
-
Yes it's enabled. The --mainnet.conf has it listening on 0.0.0.0:9030
Edit: Daemon port is actually 9053!
…On Wed, Dec 15, 2021, 7:12 PM Oliver Weichhold ***@***.***> wrote:
How do you run the ergo daemon? Is it's API actually enabled?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1042 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAIAKRWUIEZ6OCFPWTHJVL3UREVFDANCNFSM5KDQJ2WQ>
.
|
Beta Was this translation helpful? Give feedback.
-
I have setup a clean build vps. Ubuntu 20.04. Installed all packages. System builds Miningcore but when I run it I get the following errors
System.NullReferenceException: Object reference not set to an instance of an object.
at Miningcore.Program.ValidateConfig() in /home/ergopool/miningcore/src/Miningcore/Program.cs:line 398
at Miningcore.Program.Main(String[] args) in /home/ergopool/miningcore/src/Miningcore/Program.cs:line 79
Cluster cannot start. Good Bye!
Any Help????
Here's my config.json
{
"logging": {
"level": "info",
"enableConsoleLog": true,
"enableConsoleColors": true,
"logFile": "/home/ergopool/ergo/logs/ergo.log",
"apiLogFile": "/home/ergopool/ergo/logs/api.log",
"logBaseDirectory": "/home/ergopool/logs/",
"perPoolLogFile": false
},
"persistence": {
"postgres": {
"host": "127.0.0.1",
"port": 5432,
"user": "",
"password": "",
"database": "**********"
}
},
"api": {
"enabled": true,
"listenAddress": "127.0.0.1",
"port": 4000,
},
"id": "ergo",
"enabled": true,
"coin": "ergo",
"address": "",
"maxActiveJobs": 20,
"blockRefreshInterval": 1000,
"jobRebroadcastTimeout": 50,
"clientConnectionTimeout": 600,
"rewardRecipients": [
{
"address": "",
"percentage": 1.0
}
],
"banning": {
"enabled": true,
"time": 180,
"invalidPercent": 90,
"checkThreshold": 150
},
"ports": {
"3194": {
"listenAddress": "0.0.0.0",
"difficulty": 0.1,
"name": "GPU Mining",
"varDiff": {
"minDiff": 0.01,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30,
"maxDelta": 0.1
}
}
},
"daemons": [
{
"host": "127.0.0.1",
"port": 9030,
"apiKey": "*****************************************************"
}
],
"paymentProcessing": {
"enabled": true,
"walletPassword": "",
"minimumPayment": 0.05,
"payoutScheme": "PPLNS",
"payoutSchemeConfig": {
"factor": 1.0
}
}
}
Beta Was this translation helpful? Give feedback.
All reactions