Bitcoin Forum
May 11, 2024, 06:21:06 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Electrum / Re: Installing my own Electrum server on: April 14, 2022, 03:41:53 PM
I was able to figure out the problem Smiley

The default RPC port 8000 was already in use. Changed it to 8001 and then it started to work.
2  Bitcoin / Electrum / Re: Installing my own Electrum server on: April 14, 2022, 10:22:10 AM
I seem to have the ElectrumX service up and running and it is synchronising Smiley I want to make a RPC call to see what is going on but as the documentation says that can only be done when synchronisation is finished except for LocalRPC.

So I try this (from the local server):
Code:
electrumx_rpc getinfo

but that gives me the following error:
Code:
Traceback (most recent call last):
  File "/usr/local/bin/electrumx_rpc", line 120, in send_request
    result = await session.send_request(method, args)
  File "/usr/local/lib/python3.9/dist-packages/aiorpcx/session.py", line 540, in send_request
    return await self._send_concurrent(message, future, 1)
  File "/usr/local/lib/python3.9/dist-packages/aiorpcx/session.py", line 512, in _send_concurrent
    return await future
asyncio.exceptions.CancelledError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/bin/electrumx_rpc", line 144, in <module>
    main()
  File "/usr/local/bin/electrumx_rpc", line 139, in main
    code = asyncio.run(send_request())
  File "/usr/lib/python3.9/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/usr/lib/python3.9/asyncio/base_events.py", line 642, in run_until_complete
    return future.result()
asyncio.exceptions.CancelledError

What is wrong?

Also, any suggestion of a good web based (or IOS) dashboard that I can use to review the status of my ElectrumX server?
3  Bitcoin / Development & Technical Discussion / Re: RPC port 8332 not accessible after reboot on: April 14, 2022, 08:21:22 AM
Yes, correct Smiley
4  Bitcoin / Electrum / Re: Installing my own Electrum server on: April 07, 2022, 10:13:48 AM
Many thanks! I really appreciate all information! Time to dig into it and see if I can get it up and running Smiley
5  Bitcoin / Electrum / Re: Installing my own Electrum server on: April 07, 2022, 09:14:54 AM
Thanks!

It is the server I am looking for at this time.

Is this the correct place to download the ElectrumX server: https://github.com/spesmilo/electrumx

Please share the download places to the other flavors of ElectrumX if possible. Don't like to guess based on searches Smiley
6  Bitcoin / Electrum / Installing my own Electrum server on: April 07, 2022, 08:40:20 AM
Hi,

I have been able to install the Bitcoin Core node (version 22.0) on my own server. But now I want to continue with installing an Electrum server that connects to my node.

How do I do that? Smiley

Where do I download the "best" version from?

Any good tutorial that I can read?

What is the difference between Electrum and ElectrumX?

Thanks!
7  Other / Beginners & Help / Re: Getting started running a Bitcoin Core node on: April 07, 2022, 08:15:57 AM
Many thanks!  Smiley
8  Bitcoin / Development & Technical Discussion / Re: RPC port 8332 not accessible after reboot on: April 07, 2022, 08:09:22 AM
I basically use the the "/bitcoin/core/bitcoin/contrib/init/bitcoind.service" which I just slightly edit...

I was able to solve the problem by adding the following to the bitcoin.conf file:

Code:
rpcbind=0.0.0.0
rpcport=8332
rpcallowip=192.168.230.0/255.255.255.0
9  Other / Beginners & Help / Getting started running a Bitcoin Core node on: April 03, 2022, 09:47:19 AM
I want to learn everything there is about running a Bitcoin Core node. But where do I get started? Can anyone point me in the right direction for tutorials and/or YouTube videos explaining the whole eco system?

Also, I would love more technical information, like what to think about if you want a high performance node.

I want to build everything from scratch so I will compile the Bitcoin Core myself and run it in a Debian installation without GUI.

Please help Smiley
10  Bitcoin / Development & Technical Discussion / RPC port 8332 not accessible after reboot on: April 03, 2022, 09:32:22 AM
I have compiled and installed Bitcoin Core for the first time on Debian 11. Everything is up and running except that RPC port 8332 is not accessible after a reboot.

I get the following error running bitcoin-cli getblockcount:

error: timeout on transient error: Could not connect to the server 127.0.0.1:8332

If I then run systemctl restart bitcoind then everything works fine.

systemctl status bitcoind shows that it is up and running just fine after a reboot.

Look at this after the reboot:

Code:
netstat -nap | grep bitcoin | grep LISTEN

tcp 0 0 0.0.0.0:8333 0.0.0.0:* LISTEN 456/bitcoind
tcp 0 0 127.0.0.1:8334 0.0.0.0:* LISTEN 456/bitcoind
tcp6 0 0 ::1:8332 :::* LISTEN 456/bitcoind
tcp6 0 0 :::8333 :::* LISTEN 456/bitcoind

And then after systemctl restart bitcoind:

Code:
tcp 0 0 127.0.0.1:8332 0.0.0.0:* LISTEN 532/bitcoind
tcp 0 0 0.0.0.0:8333 0.0.0.0:* LISTEN 532/bitcoind
tcp 0 0 127.0.0.1:8334 0.0.0.0:* LISTEN 532/bitcoind
tcp6 0 0 ::1:8332 :::* LISTEN 532/bitcoind
tcp6 0 0 :::8333 :::* LISTEN 532/bitcoind
For some reason the 8332 port is not opened on reboot...

Any idea what will solve the problem?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!