Next scheduled rescrape ... in 6 days
Version 2
Last scraped
Edited on 09/09/2025, 21:38:09 UTC
I don't know something weird that also involves giving your login and password to this cookie.
I don't think the password is necessary. According to the docs, that is an alternative authentication method. https://bitcoincoredocs.com/tor.html. It is either Cookie Authentication or Hashed ControlPassword.

Edit: Upon further research, I was confusing Tor Browser, with Tor. I have Tor Browser installed, but not Tor, so I guess I could follow that tutorial to install it. I thought Tor Browser included the Tor service which you could run separately but you need to install it yourself. I still need a proper tutorial tho.
Good, you've figured out your first mistake. That's why it is called Browser! It is a standalone project that uses TOR and is different from the global tor service. Which Linux version are you using?


Last time I did this for my servers I used something like this, check it out: https://ubuntuhandbook.org/index.php/2021/01/install-tor-tor-browser-ubuntu-20-10-20-04/. It should be pretty straightforward. Let me know if you manage to do it.

proxy=127.0.0.1:9050
listen=1
listenonion=1

But some use the tor service, and have to register some sort of cookie, I don't know something weird that also involves giving your login and password to this cookie.
There are two difference here:

  • 1) TOR more as a "client" with a lower level of integration, which would be connecting through the proxy as you have written above. This method does not have any authentication.
  • 2) Authenticated mode with access to the Tor control protocol, deeper integration with the service. This is where the cookie authentication would come into play.

I am not sure if I remember correctly, but in the first method you would not get a .onion address and in the second you would. You can check the debug log for information about this. I am no longer 100% confident, but I think that in the first case the node would not act as a full peer despite listen=1 but I must freshen up my knowledge about it. Perhaps someone else can confirm.


Did you read the Wiki entry? https://en.bitcoin.it/wiki/Setting_up_a_Tor_hidden_service
Version 1
Scraped on 09/09/2025, 21:13:08 UTC
Edit: Upon further research, I was confusing Tor Browser, with Tor. I have Tor Browser installed, but not Tor, so I guess I could follow that tutorial to install it. I thought Tor Browser included the Tor service which you could run separately but you need to install it yourself. I still need a proper tutorial tho.
Good, you've figured out your first mistake. That's why it is called Browser! It is a standalone and separate project that uses TOR and is different from the global tor service. Which Linux version are you using?


Last time I did this for my servers I used something like this, check it out: https://ubuntuhandbook.org/index.php/2021/01/install-tor-tor-browser-ubuntu-20-10-20-04/. It should be pretty straightforward. Let me know if you manage to do it.

proxy=127.0.0.1:9050
listen=1
listenonion=1

But some use the tor service, and have to register some sort of cookie, I don't know something weird that also involves giving your login and password to this cookie.
There are two difference here:

  • 1) TOR inmore as a "client" modewith a lower level of integration, which would be connecting through the proxy as you have written above. This method does not have any authentication. If I remember correctly, this method would have you only as a client on the TOR network and not a full peer that others can reach.
  • 2) Authenticated mode with access to the Tor control protocol, more for persistent use ideeper integration with the service.e This is where the cookie authentication would come into play. running a full node that others can reach and download data from.
Original archived Re: What's the current best way to run Bitcoin throught Tor?
Scraped on 09/09/2025, 21:07:36 UTC
Edit: Upon further research, I was confusing Tor Browser, with Tor. I have Tor Browser installed, but not Tor, so I guess I could follow that tutorial to install it. I thought Tor Browser included the Tor service which you could run separately but you need to install it yourself. I still need a proper tutorial tho.
Good, you've figured out your first mistake. That's why it is called Browser! It is a standalone and separate project that uses TOR and is different from the global tor service. Which Linux version are you using?


Last time I did this for my servers I used something like this, check it out: https://ubuntuhandbook.org/index.php/2021/01/install-tor-tor-browser-ubuntu-20-10-20-04/. It should be pretty straightforward. Let me know if you manage to do it.

proxy=127.0.0.1:9050
listen=1
listenonion=1

But some use the tor service, and have to register some sort of cookie, I don't know something weird that also involves giving your login and password to this cookie.
There are two difference here:

  • 1) TOR in "client" mode, which would be connecting through the proxy as you have written above. This method does not have any authentication. If I remember correctly, this method would have you only as a client on the TOR network and not a full peer that others can reach.
  • 2) Authenticated mode, more for persistent use i.e. running a full node that others can reach and download data from.