2015-10-15 70 views
-2

当我使用CentOS的64位操作系统,我最后一次使用Tor它100%错误启动TOR

但今天我试图运行它,我不能我在做什么:

service tor restart 

Stopping tor.../etc/init.d/tor: line 144: kill: (17009) - No such process 
failed. 
Starting tor... tor is already running. 
当我试图阻止它

sudo /etc/init.d/tor stop 

Stopping tor.../etc/init.d/tor: line 144: kill: (17009) - No such process 
failed. 

当我试图启动它:

sudo /etc/init.d/tor start 

Starting tor... tor is already running. 

sudo /etc/init.d/tor status 

tor is not running 

我也试图杀死所有TOR功能:

killall tor 

tor: no process killed 

我使用它proxychains4

我怎样才能解决呢?

thnx。

回答

1

查看Tor的启动脚本(/etc/init.d/tor)并确定PID文件(可能是/var/run/tor/tor.pid)。

如果有任何Tor进程正在运行,请尝试将其杀死。

ps aux | grep tor 

如果你看到任何Tor的过程中,问题kill -9 xxx其中xxx是进程ID。

然后从上面的rm /var/run/tor/tor.pid删除你的Tor pid文件。

再次尝试启动Tor。

+0

非常感谢你。 – emzemzx