Waiting for daemons to come online ... #1291
Replies: 9 comments
-
In your ETH daemon config file do you have it listening for request from your miningcore server ?
if you dont tell the ETH daemon to expect request from it then it just ignores them all |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
This is not how ETH daemon works |
Beta Was this translation helpful? Give feedback.
-
Stay civilized. |
Beta Was this translation helpful? Give feedback.
-
Omg, you're right, im very sorry. |
Beta Was this translation helpful? Give feedback.
-
You're right. Didn't click in my head that it was ETH. Just finished setting up btg and vtc so had that procedure stuck in the brain. @oliverw thanks for trying to keep things civil here. |
Beta Was this translation helpful? Give feedback.
-
So, is this still an issue or resolved? |
Beta Was this translation helpful? Give feedback.
-
~/.bitcoin/bitcoin.conf on the bitcoind host (192.168.2.4): rpcuser=xxx but I can't connect on minincore(192.168.2.6)
Waiting for daemons to come online ... |
Beta Was this translation helpful? Give feedback.
-
having same issue running all coind locally ports and paramaters are correct. wallet is verified in full sync and can run an explorer on the wallets no issue. i have tried 2 coins both of which sat spooling "waiting for daemons" even if i gave it wrong passwords. looking in the logs i can see it is firing up the getinfo and the wallet recieves it. legacy daemon is enabled due to being an old as dirt coin. anyone got a scooby doo? |
Beta Was this translation helpful? Give feedback.
-
I have geth and miningcore installed on different servers. However, miningcore cannot connect with the geth daemon.
{
"$schema": "https://raw.githubusercontent.com/oliverw/miningcore/master/src/Miningcore/config.schema.json",
"logging": {
"level": "info",
"enableConsoleLog": true,
"enableConsoleColors": true,
"logFile": "core.log",
"apiLogFile": "api.log",
"logBaseDirectory": "/home/pool/logs",
"perPoolLogFile": false
},
"statistics": {
"statsUpdateInterval": 60,
"hashrateCalculationWindow": 30,
"statsCleanupInterval": 92,
"statsDBCleanupHistory": 365
},
"banning": {
"manager": "Integrated",
"banOnJunkReceive": false,
"banOnInvalidShares": false
},
"notifications": {
"enabled": false,
"email": {
"host": "smtp.example.com",
"port": 587,
"user": "user",
"password": "password",
"fromAddress": "[email protected]",
"fromName": "support"
},
"admin": {
"enabled": false,
"emailAddress": "[email protected]",
"notifyBlockFound": true
}
},
"persistence": {
"postgres": {
"host": "127.0.0.1",
"port": 5432,
"user": "miningcore",
"password": "*********",
"database": "miningcore"
}
},
"equihashMaxThreads": 96,
"paymentProcessing": {
"enabled": true,
"interval": 600,
"shareRecoveryFile": "recovered-shares.txt"
},
"api": {
"enabled": true,
"listenAddress": "127.0.0.1",
"port": 4000,
"metricsIpWhitelist": [
"127.0.0.1"
],
"rateLimiting": {
"disabled": true,
"rules": [
{
"Endpoint": "",
"Period": "60s",
"Limit": 1000000
}
],
"ipWhitelist": []
}
},
"pools": [
{
"id": "eth",
"enabled": true,
"coin": "ethereum",
"address": "0x72d5bA8942e4D991cf2e***********************",
"rewardRecipients": [
{
"type": "op",
"address": "0x72d5bA8942e4D991cf2e***********************",
"percentage": 0.1
}
],
"blockRefreshInterval": 500,
"jobRebroadcastTimeout": 10,
"clientConnectionTimeout": 600,
]
}
How to configure?
Beta Was this translation helpful? Give feedback.
All reactions