Parity
禁用和刪除奇偶校驗?
我在我的 Mac 上安裝了奇偶校驗,即使我通過應用程序文件夾刪除了它。它仍在後台執行。如何從我的電腦中完全刪除它?
我的本地主機 8080 不斷路由到奇偶校驗。
這是來自https://github.com/ethcore/parity/blob/master/mac/uninstall-parity.sh的 Mac 上 Parity 的解除安裝腳本
#!/bin/bash if [[ "$SUDO_USER" == "" ]] ; then echo "This script requires elevated privileges." sudo $0 exit; fi PLIST=~/Library/LaunchAgents/io.parity.ethereum.plist su $SUDO_USER -c "launchctl stop io.parity.ethereum" su $SUDO_USER -c "launchctl unload $PLIST" rm -f /usr/local/libexec/parity /usr/local/libexec/uninstall-parity.sh /usr/local/bin/ethstore $PLIST
您可以嘗試在 Mac 上使用文件名搜尋解除安裝腳本
uninstall-parity.sh
並嘗試執行它,或者嘗試手動執行說明。2017 年 2 月 11 日更新
要手動停止奇偶校驗守護程序:
sudo launchctl stop io.parity.ethereum
要刪除奇偶校驗守護程序的自動啟動:
sudo launchctl unload ~/Library/LaunchAgents/io.parity.ethereum.plist
要解除安裝 Parity,請執行安裝在您電腦上的腳本。
上述解決方案中提到的文件現在位於此處:
https://github.com/paritytech/parity/blob/master/mac/uninstall-parity.sh