无法在 Redhat 8 上附加 Boinc 项目:身份验证错误

无法在 Redhat 8 上附加 Boinc 项目:身份验证错误

boinc-client尽管运行正常,但我无法在 Redhat 8 上附加 Boinc 项目。

# sudo -u boinc boinccmd --project_attach http://www.worldcommunitygrid.org <token>
Operation failed: authentication error

该命令在 Ubuntu 上也同样有效。

为什么会出现此错误以及如何附加项目?

答案1

我遇到了完全相同的问题。技巧很简单,你需要cd /var/lib/boinc在发出命令之前

答案2

这应该有效:

systemctl restart boinc-client
cat /var/lib/boinc/gui_rpc_auth.cfg > /etc/boinc-client/gui_rpc_auth.cfg 
cd /etc/boinc-client
boinccmd --create_account http://www.worldcommunitygrid.org <email> <pass> <username>
boinccmd --lookup_account http://www.worldcommunitygrid.org <email> <pass>
boinccmd --project_attach http://www.worldcommunitygrid.org <token>

相关内容