Não foi possível ligar a 127.0.0.1:9050: Endereço já em uso. O Tor já está funcionando?

7

Eu instalei o Tor dessa maneira:

sudo add-apt-repository ppa:webupd8team/tor-browser
sudo apt-get update
sudo apt-get install tor-browser

Corro hoje no Terminal this: tor e recebi esta mensagem de erro:

Oct 04 19:24:04.461 [notice] Tor v0.2.7.6 (git-605ae665009853bd) running on Linux with Libevent 2.0.21-stable, OpenSSL 1.0.2g and Zlib 1.2.8.
Oct 04 19:24:04.461 [notice] Tor can't help you if you use it wrong! Learn how to be safe at https://www.torproject.org/download/download#warning
Oct 04 19:24:04.517 [notice] Read configuration file "/etc/tor/torrc".
Oct 04 19:24:04.574 [notice] Opening Socks listener on 127.0.0.1:9050
Oct 04 19:24:04.574 [warn] Could not bind to 127.0.0.1:9050: Address already in use. Is Tor already running?
Oct 04 19:24:04.575 [warn] Failed to parse/validate config: Failed to bind one of the listener ports.
Oct 04 19:24:04.575 [err] Reading config failed--see warnings above.

Como consertar isso?

    
por Billal BEGUERADJ 04.10.2016 / 18:33

2 respostas

9

netstat dirá o que você está ouvindo nessa porta. Abra um terminal (pressione Ctrl + Alt + T ), e execute:

sudo netstat -plnt | fgrep 9050

Ele informará qual programa está usando essa porta. Por exemplo, no meu sistema, mostra:

tcp       0     0 127.0.0.1:9050         0.0.0.0:*              LISTEN     1198/tor

No final, ele diz que o programa que está ouvindo nessa porta é tor .

    
por Olathe 07.10.2016 / 20:43
4

O que funciona para mim:

killall tor
    
por First Last 20.08.2017 / 11:01

Tags