2015-10-15 91 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