Impossibile associare a 127.0.0.1:9050: indirizzo già in uso. Tor è già in esecuzione?


17

Ho installato Tor in questo modo:

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

Oggi corro su Terminal this: tor e ho ricevuto questo messaggio di errore:

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.

Come risolvere questo?

Risposte:



13

netstatti dirà cosa sta ascoltando su quella porta. Apri un terminale (premi Ctrl+ Alt+ T) ed esegui:

sudo netstat -plnt | fgrep 9050

Ti dirà quale programma sta usando quella porta. Ad esempio, sul mio sistema, mostra:

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

Alla fine, dice che il programma è in ascolto su quella porta tor.


Grazie per il feedback. Sì, dice che Tor sta usando quella porta. Ma sono bloccato lì ricevendo lo stesso messaggio di errore
Billal Begueradj,

6
Potresti aver installato entrambi tor-browsere un secondo pacchetto Tor. Prova sudo service tor stope vedi se il browser Tor funziona dopo.
Olathe,

4

Risposta di David Foerster: killall tornon ha funzionato per me.
Ho ottenuto il risultatotor: no process found.

Nuova soluzione: sudo killall tor


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.