Boinc on CentOS8 部署及使用

kamisamak 发布于 2022-06-23 2969 次阅读


#部署及配置开机自启
sudo yum install boinc-client boinc-manager
sudo systemctl enable boinc-client
sudo systemctl start boinc-client
#防火墙放行
firewall-cmd --add-port=31416/tcp --permanent
firewall-cmd --query-port=31416/tcp
#配置Bonic远程管理
cat <<EOF>> /root/cc_config.xml
<cc_config>
   <options>
      <ncpus>-1</ncpus>
      <!--  yuan'cheng   -->
      <allow_remote_gui_rpc>1</allow_remote_gui_rpc>
   </options>
</cc_config> 
EOF
#配置Bonic远程管理密码
cat <<EOF>> /root/gui_rpc_auth.cfg
teG!asdklmaskDSl!bDFBJA
EOF
#测试
sudo systemctl restart boinc-client
boinc --daemon
boinc

#boinc  boinc核心程序
#boinccmd   boinc shell工具
Boinc客户端添加主机

CentOS部署Boinc-01

#也可以命令行操作添加项目
#boinccmd --project_attach 项目地址 密钥
boinccmd --project_attach www.worldcommunitygrid.org xxxxxxxxxxxxxxxxxxx
boinccmd --get_state
#命令详情
#https://equn.com/wiki/Boinccmd
此作者没有提供个人介绍。
最后更新于 2022-06-23