如何在Vidalia之前阻止Tor启动?


8

我在尝试与vidalia一起运行时遇到这些错误

Apr 19 21:55:15.371 [Notice] Tor v0.2.1.30. This is experimental software. Do not rely on it for strong anonymity. (Running on Linux i686)
Apr 19 21:55:15.372 [Notice] Initialized libevent version 1.4.13-stable using method epoll. Good.
Apr 19 21:55:15.373 [Notice] Opening Socks listener on 127.0.0.1:9050
Apr 19 21:55:15.373 [Warning] Could not bind to 127.0.0.1:9050: Address already in use. Is Tor already running?
Apr 19 21:55:15.373 [Warning] Failed to parse/validate config: Failed to bind one of the listener ports.
Apr 19 21:55:15.373 [Error] Reading config failed--see warnings above.

我不认为tor正在运行。这是我的本地主机的nmap扫描

Starting Nmap 5.21 ( http://nmap.org ) at 2011-04-19 21:59 CEST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.0000050s latency).
Hostname localhost resolves to 2 IPs. Only scanned 127.0.0.1
rDNS record for 127.0.0.1: localhost.localdomain
Not shown: 989 closed ports
PORT      STATE SERVICE
22/tcp    open  ssh
53/tcp    open  domain
80/tcp    open  http
139/tcp   open  netbios-ssn
445/tcp   open  microsoft-ds
631/tcp   open  ipp
3128/tcp  open  squid-http
3306/tcp  open  mysql
9000/tcp  open  cslistener
9050/tcp  open  tor-socks
10000/tcp open  snet-sensor-mgmt

我看到tor-socks正在这里运行,可能是问题的原因。如何停止启动?我想使用它,vidalia以便可以监视发生的情况。

Answers:


7

较新的Tor版本有一个文件/etc/default/tor.vidalia。它包含三行:

if [ -x /usr/bin/vidalia ]; then
        RUN_DAEMON=yes
fi

您可以将选项更改为no。这将阻止作为守护程序启动。现在,当您启动Vidalia时,Tor将立即启动。


2

我认为该条件是不必要的。如果您在/ etc / default / tor中查找,那么除非通过相同的测试,否则不提供tor.vidalia文件。

此操作解决了部分问题,但并非全部解决,因此免责声明:我仍然没有有效的设置。


1

尝试这个:

转到设置>高级> Tor控制,并选中地址为127.0.0.1:9051的使用TCP连接(ControlPort)。

对我来说很好


0

我对这个问题的解决方案是TOR守护程序已经在运行,而Vidalia不喜欢它。

ps aux | grep tor

其次是

sudo service tor stop

或一个

sudo killall tor

然后启动vidalia不会产生任何错误。

我认为还添加qbi的tor.vidalia文件来启动守护程序也有帮助。


0

我相信这个答案(在此处找到)会很有用。您可能必须从头开始并下载捆绑软件。它为我工作。捆绑包可以在这里找到。


1
欢迎来到Ask Ubuntu!尽管从理论上讲这可以回答问题,但最好在此处包括答案的基本部分,并提供链接以供参考。
Peachy 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.