태그 보관물: tor

tor

127.0.0.1:9050 : 주소를 이미 사용하고 있습니다. Tor가 이미 실행 중입니까? Libevent 2.0.21-stable,

Tor를 이런 식으로 설치했습니다.

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

나는 오늘 터미널에서 이것을 실행합니다 : tor 그리고 나는이 오류 메시지를 받았습니다 :

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.

이 문제를 해결하는 방법?



답변

나를 위해 일하는 것 :

killall tor


답변

netstat해당 포트에서 듣고있는 내용을 알려줍니다. 터미널을 열고 ( Ctrl+ Alt+를 누름 T) 다음을 실행하십시오.

sudo netstat -plnt | fgrep 9050

해당 포트를 사용중인 프로그램을 알려줍니다. 예를 들어, 내 시스템에서 다음을 보여줍니다.

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

결국 해당 포트에서 수신 대기하는 프로그램은 tor입니다.


답변

@David Foerster의 답변 : killall tor나를 위해 작동하지 않았습니다.
나는 결과를 얻었다tor: no process found.

새로운 솔루션 : sudo killall tor


답변

장치를 다시 시작하고 다시 실행하십시오. 포트가 현실이 될 것입니다.


답변