至关重要!获取主机列表失败



DistCC连接主机失败。

$ distcc --show-hosts
distcc[32060] (dcc_parse_hosts) Warning: /home/amacdonald/.distcc/zeroconf/hosts contained no hosts; can't distribute work
distcc[32060] (dcc_zeroconf_add_hosts) CRITICAL! failed to parse host file.
distcc[32060] (dcc_show_hosts) CRITICAL! Failed to get host list
我的默认配置是
$ cat /etc/default/distcc | grep -v "#|^$"
STARTDISTCC="true"
ALLOWEDNETS="127.0.0.1"
LISTENER="127.0.0.1"
NICE="10"
JOBS=""
ZEROCONF="true"

我认为ZeroConf不需要我配置主机,但它抱怨我没有。如果我尝试将主机名写入/home/amacdonald/.distcc/zeroconf/hosts distcc实际上最终会删除这些行。

同时,我所在的系统是

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.4 LTS
Release:    14.04
Codename:   trusty
$ dpkg -l | grep distcc
ii  distcc                                                3.1-6                                               amd64        simple distributed compiler client and server
$ distcc --version
distcc 3.1 x86_64-pc-linux-gnu
  (protocols 1, 2 and 3) (default port 3632)
  built May  9 2013 23:15:01
Copyright (C) 2002, 2003, 2004 by Martin Pool.
Includes miniLZO (C) 1996-2002 by Markus Franz Xaver Johannes Oberhumer.
Portions Copyright (C) 2007-2008 Google.
distcc comes with ABSOLUTELY NO WARRANTY.  distcc is free software, and
you may use, modify and redistribute it under the terms of the GNU 
General Public License version 2 or later.
Built with Zeroconf support.
Please report bugs to distcc@lists.samba.org

这可能有点晚了,但我只是想做完全相同的事情,什么对我有用,我在你的distcc文件中发现奇怪的是以下几行:

ALLOWEDNETS="127.0.0.1"

我认为这必须是一个子网掩码,例如192.168.0.0/16。环回地址(127.0.0.1)将数据包路由回主机,AFAIK。

LISTENER="127.0.0.1"

我想,这一定是这台PC本身的IP地址,(在编译过程中有帮助的那个),例如192.168.13.13。(至少现在对我来说,这是个错误。我一修改它,这个"辅助"PC就开始接受来自主机的编译作业。

JOBS=""

这个可能无关紧要,但是这里的非零整数不会留下任何机会(而不必查看文档,知道JOBS的默认值是什么)。但可能还好。

我认为ZeroConf不需要我配置主机,但它是抱怨我没有。如果我试着把主机名写入/home/amacdonald/.Distcc/zeroconf/hosts实际结束Distcc删除这些行

所以恕我冒昧,上述更改是需要的,而不考虑ZeroConf。(但我可能错了)

相关内容

  • 没有找到相关文章

最新更新