• About
  • FAQ
  • Earn Bitcoin while Surfing the net
  • Buy & Sell Crypto on Paxful
Newsletter
Approx Foundation
  • Home
    • Home – Layout 1
  • Bitcoin
  • Ethereum
  • Regulation
  • Market
  • Blockchain
  • Business
  • Guide
  • Contact Us
No Result
View All Result
  • Home
    • Home – Layout 1
  • Bitcoin
  • Ethereum
  • Regulation
  • Market
  • Blockchain
  • Business
  • Guide
  • Contact Us
No Result
View All Result
Approx Foundation
No Result
View All Result
Home Bitcoin

Mempool docker unable to connect to electrum server

Moussa by Moussa
January 23, 2026
in Bitcoin
0
How do Bitcoin mining pools typically handle payout frequency versus thresholds?
189
SHARES
1.5k
VIEWS
Share on FacebookShare on Twitter


I’m having a problem with “connecting” my mempool.space to electrumX server.
My bitcoin core is working fine, electrumX server is fine as well and up to chaintip. I’ve installed docker and docker-compose. Everything works fine, However when I try to docker-compose up it runs fine I guess, but at the end it pops this error and keeps repeating it:

docker-api-1 | Jan 6 11:38:12 [98] ERR: Electrum error: {“errno”:-111,”code”:”ECONNREFUSED”,”syscall”:”connect”,”address”:”0.0.0.0″,”port”:50001}
docker-api-1 | Jan 6 11:38:12 [98] INFO: Disconnected from Electrum Server at 0.0.0.0:50001

My docker-compose.yml file:

version: "3.7"

services:
  web:
    environment:
      FRONTEND_HTTP_PORT: "8080"
      BACKEND_MAINNET_HTTP_HOST: "api"
    image: mempool/frontend:latest
    user: "1000:1000"
    restart: always
    stop_grace_period: 1m
    command: "./wait-for db:3306 --timeout=720 -- nginx -g 'daemon off;'"
    ports:
      - 4080:8080
  api:
    environment:
      ELECTRUM_HOST: "0.0.0.0"
      ELECTRUM_PORT: "50001"
      ELECTRUM_TLS_ENABLED: "true"
      MEMPOOL_BACKEND: "electrum"
      CORE_RPC_HOST: "0.0.0.0"
      CORE_RPC_PORT: "8332"
      CORE_RPC_USERNAME: "####"
      CORE_RPC_PASSWORD: "####"
      DATABASE_ENABLED: "true"
      DATABASE_HOST: "db"
      DATABASE_DATABASE: "mempool"
      DATABASE_USERNAME: "mempool"
      DATABASE_PASSWORD: "mempool"
      STATISTICS_ENABLED: "true"
    image: mempool/backend:latest
    user: "1000:1000"
    restart: always
    stop_grace_period: 1m
    command: "./wait-for-it.sh db:3306 --timeout=720 --strict -- ./start.sh"
    volumes:
      - ./data:/backend/cache
  db:
    environment:
      MYSQL_DATABASE: "mempool"
      MYSQL_USER: "mempool"
      MYSQL_PASSWORD: "mempool"
      MYSQL_ROOT_PASSWORD: "admin"
    image: mariadb:10.5.8
    user: "1000:1000"
    restart: always
    stop_grace_period: 1m
    volumes:
      - ./mysql/data:/var/lib/mysql

My electrumX.conf file:

# default /etc/electrumx.conf for systemd

# REQUIRED
DB_DIRECTORY = /home/qbr1ck/electrumx_db
# Bitcoin Node RPC Credentials
DAEMON_URL = ####:####@localhost

COIN = Bitcoin
SERVICES = tcp://0.0.0.0:50001
PEER_DISCOVERY = off
COST_SOFT_LIMIT = 0
COST_HARD_LIMIT = 0

User and Password are hashed out in both files, however they are the same.

This is the full output after running docker up, might give some clues

[+] Running 3/3
⠿ Container docker-db-1 Running 0.0s
⠿ Container docker-web-1 Running 0.0s
⠿ Container docker-api-1 Recreated 60.4s
Attaching to docker-api-1, docker-db-1, docker-web-1
docker-api-1 | wait-for-it.sh: waiting 720 seconds for db:3306
docker-api-1 | wait-for-it.sh: db:3306 is available after 0 seconds
docker-db-1 | 2023-01-08 13:49:36 6 [Warning] Aborted connection 6 to db: ‘unconnected’ user: ‘unauthenticated’ host: ‘172.16.57.2’ (This connection closed normally without authentication)
docker-api-1 | Jan 8 13:49:37 [97] NOTICE: Starting Mempool Server… (a210a3f)
docker-api-1 | Jan 8 13:49:37 [97] INFO: Restoring mempool and blocks data from disk cache
docker-api-1 | Jan 8 13:49:37 [97] ERR: Electrum error: {“errno”:-111,”code”:”ECONNREFUSED”,”syscall”:”connect”,”address”:”127.0.0.1″,”port”:50001}
docker-api-1 | Jan 8 13:49:37 [97] ERR: Error connecting to Electrum Server at localhost:50001
docker-api-1 | Jan 8 13:49:37 [97] INFO: Disconnected from Electrum Server at localhost:50001
docker-api-1 | Jan 8 13:49:37 [97] INFO: Database connection established.
docker-api-1 | Jan 8 13:49:37 [97] INFO: Starting statistics service
docker-api-1 | Jan 8 13:49:37 [97] INFO: Starting currency rates service
docker-api-1 | Jan 8 13:49:37 [97] INFO: Currency rates service will be queried over clearnet using https://price.bisq.wiz.biz/getAllMarketPrices
docker-api-1 | Jan 8 13:49:37 [97] NOTICE: Mempool Server is running on port 8999
docker-api-1 | Jan 8 13:49:37 [97] INFO: Updating latest mining pools from https://raw.githubusercontent.com/mempool/mining-pools/master/pools.json over clearnet
docker-api-1 | Jan 8 13:49:42 [97] WARN: runMainLoop error: connect ECONNREFUSED 127.0.0.1:8332. Retrying in 10 sec.
docker-api-1 | Jan 8 13:49:47 [97] ERR: Electrum error: {“errno”:-111,”code”:”ECONNREFUSED”,”syscall”:”connect”,”address”:”127.0.0.1″,”port”:50001}
docker-api-1 | Jan 8 13:49:47 [97] ERR: Electrum error: {“errno”:-111,”code”:”ECONNREFUSED”,”syscall”:”connect”,”address”:”127.0.0.1″,”port”:50001}
docker-api-1 | Jan 8 13:49:47 [97] INFO: Disconnected from Electrum Server at localhost:50001
docker-api-1 | Jan 8 13:49:52 [97] WARN: runMainLoop error: connect ECONNREFUSED 127.0.0.1:8332. Retrying in 20 sec.
docker-api-1 | Jan 8 13:49:57 [97] ERR: Electrum error: {“errno”:-111,”code”:”ECONNREFUSED”,”syscall”:”connect”,”address”:”127.0.0.1″,”port”:50001}
docker-api-1 | Jan 8 13:49:57 [97] ERR: Electrum error: {“errno”:-111,”code”:”ECONNREFUSED”,”syscall”:”connect”,”address”:”127.0.0.1″,”port”:50001}
docker-api-1 | Jan 8 13:49:57 [97] INFO: Disconnected from Electrum Server at localhost:50001



Source link

Related articles

How do Bitcoin mining pools typically handle payout frequency versus thresholds?

blockchain – SCAMMED BTC RECOVERY

March 24, 2026
Oil at $100+ and the ‘Digital Gold’ Thesis: Investors Are Flocking to Bitcoin USD

Oil at $100+ and the ‘Digital Gold’ Thesis: Investors Are Flocking to Bitcoin USD

March 24, 2026
Share76Tweet47

Related Posts

How do Bitcoin mining pools typically handle payout frequency versus thresholds?

blockchain – SCAMMED BTC RECOVERY

by Moussa
March 24, 2026
0

need an advice. I am currently processing acrypto recovery,with an agencycalled, recovering@usa .com and we did some transaction validation. Out...

Oil at $100+ and the ‘Digital Gold’ Thesis: Investors Are Flocking to Bitcoin USD

Oil at $100+ and the ‘Digital Gold’ Thesis: Investors Are Flocking to Bitcoin USD

by Moussa
March 24, 2026
0

While global markets panic over rising Oil Prices and geopolitical tension in the Middle East, Bitcoin is doing something unexpected....

Warren Seeks Details Of MrBeast’s Crypto Plans, Orders Response By April 3

Warren Seeks Details Of MrBeast’s Crypto Plans, Orders Response By April 3

by Moussa
March 24, 2026
0

Trusted Editorial content, reviewed by leading industry experts and seasoned editors. Ad Disclosure Senator Elizabeth Warren has formally pressed Beast...

Strategy Discloses $42 Billion Fundraising Plan To Hit 1 Million Bitcoin Target By End Of 2026

Strategy Discloses $42 Billion Fundraising Plan To Hit 1 Million Bitcoin Target By End Of 2026

by Moussa
March 24, 2026
0

Strategy, formerly known as MicroStrategy and led by Michael Saylor, disclosed a new Bitcoin (BTC) acquisition on Monday while simultaneously...

MoonPay Launches Open-Source Wallet Standard For AI Agents

MoonPay Launches Open-Source Wallet Standard For AI Agents

by Moussa
March 24, 2026
0

MoonPay recently launched an open-source wallet standard to equip artificial intelligence (AI) agents with the ability to manage funds and...

Load More

youssufi.com

sephina.com

[vc_row full_width="stretch_row" parallax="content-moving" vc_row_background="" background_repeat="no-repeat" background_position="center center" footer_scheme="dark" css=".vc_custom_1517813231908{padding-top: 60px !important;padding-bottom: 30px !important;background-color: #191818 !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}" footer_widget_title_color="#fcbf46" footer_button_bg="#fcb11e"][vc_column width="1/4"]

We bring you the latest in Crypto News

[/vc_column][vc_column width="1/4"][vc_wp_categories]
[/vc_column][vc_column width="1/4"][vc_wp_tagcloud taxonomy="post_tag"][/vc_column][vc_column width="1/4"]

Newsletter

[vc_raw_html]JTNDcCUzRSUzQ2RpdiUyMGNsYXNzJTNEJTIydG5wJTIwdG5wLXN1YnNjcmlwdGlvbiUyMiUzRSUwQSUzQ2Zvcm0lMjBtZXRob2QlM0QlMjJwb3N0JTIyJTIwYWN0aW9uJTNEJTIyaHR0cHMlM0ElMkYlMkZhcHByb3gub3JnJTJGJTNGbmElM0RzJTIyJTNFJTBBJTBBJTNDaW5wdXQlMjB0eXBlJTNEJTIyaGlkZGVuJTIyJTIwbmFtZSUzRCUyMm5sYW5nJTIyJTIwdmFsdWUlM0QlMjIlMjIlM0UlM0NkaXYlMjBjbGFzcyUzRCUyMnRucC1maWVsZCUyMHRucC1maWVsZC1maXJzdG5hbWUlMjIlM0UlM0NsYWJlbCUyMGZvciUzRCUyMnRucC0xJTIyJTNFRmlyc3QlMjBuYW1lJTIwb3IlMjBmdWxsJTIwbmFtZSUzQyUyRmxhYmVsJTNFJTBBJTNDaW5wdXQlMjBjbGFzcyUzRCUyMnRucC1uYW1lJTIyJTIwdHlwZSUzRCUyMnRleHQlMjIlMjBuYW1lJTNEJTIybm4lMjIlMjBpZCUzRCUyMnRucC0xJTIyJTIwdmFsdWUlM0QlMjIlMjIlM0UlM0MlMkZkaXYlM0UlMEElM0NkaXYlMjBjbGFzcyUzRCUyMnRucC1maWVsZCUyMHRucC1maWVsZC1lbWFpbCUyMiUzRSUzQ2xhYmVsJTIwZm9yJTNEJTIydG5wLTIlMjIlM0VFbWFpbCUzQyUyRmxhYmVsJTNFJTBBJTNDaW5wdXQlMjBjbGFzcyUzRCUyMnRucC1lbWFpbCUyMiUyMHR5cGUlM0QlMjJlbWFpbCUyMiUyMG5hbWUlM0QlMjJuZSUyMiUyMGlkJTNEJTIydG5wLTIlMjIlMjB2YWx1ZSUzRCUyMiUyMiUyMHJlcXVpcmVkJTNFJTNDJTJGZGl2JTNFJTBBJTNDZGl2JTIwY2xhc3MlM0QlMjJ0bnAtZmllbGQlMjB0bnAtcHJpdmFjeS1maWVsZCUyMiUzRSUzQ2xhYmVsJTNFJTNDaW5wdXQlMjB0eXBlJTNEJTIyY2hlY2tib3glMjIlMjBuYW1lJTNEJTIybnklMjIlMjByZXF1aXJlZCUyMGNsYXNzJTNEJTIydG5wLXByaXZhY3klMjIlM0UlQzIlQTBCeSUyMGNvbnRpbnVpbmclMkMlMjB5b3UlMjBhY2NlcHQlMjB0aGUlMjBwcml2YWN5JTIwcG9saWN5JTNDJTJGbGFiZWwlM0UlM0MlMkZkaXYlM0UlM0NkaXYlMjBjbGFzcyUzRCUyMnRucC1maWVsZCUyMHRucC1maWVsZC1idXR0b24lMjIlM0UlM0NpbnB1dCUyMGNsYXNzJTNEJTIydG5wLXN1Ym1pdCUyMiUyMHR5cGUlM0QlMjJzdWJtaXQlMjIlMjB2YWx1ZSUzRCUyMlN1YnNjcmliZSUyMiUyMCUzRSUwQSUzQyUyRmRpdiUzRSUwQSUzQyUyRmZvcm0lM0UlMEElM0MlMkZkaXYlM0UlM0NiciUyRiUzRSUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row]
No Result
View All Result
  • Contact Us
  • Homepages
  • Business
  • Guide

© 2024 APPROX FOUNDATION - The Crypto Currency News