On Sat, 2009-10-17 at 12:48 +0200, Matthias Krebs wrote: > Am Freitag 16 Oktober 2009 20:34:17 schrieb Michael Sullivan: > > On Fri, 2009-10-16 at 18:31 +0200, Matthias Krebs wrote: > > > Am Freitag 16 Oktober 2009 15:23:20 schrieb Michael Sullivan: > > > > I think I've set up distcc correctly, but I keep seeing a whole bunch > > > > of messages like this: > > > > distcc[24416] (dcc_writex) ERROR: failed to write: Connection reset by > > > > peer > > > > > > > > Is this normal? Is there anything I can do to prevent this from > > > > happening? > > > > -Michael Sullivan- > > > > > > Well, if distcc does not see the other hosts it says somethind along the > > > lines "failed to distribute, compiling locally instead" > > > > > > Looks more like a permission problem. > > > > > > You did adjust /etc/conf.d/distccd, did you ? > > > > > > Especially the network settings should allow your local network: > > > DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.1.0/24" > > > > Do I put that line on the slow machine or the fast one? > You need to put it on all hosts you have configured for usage. > > distcc-config --get-hosts > > shows you this hosts, but you have to configure them first with > > distcc-config --set-hosts > > It's all explained here : http://www.gentoo.org/doc/en/distcc.xml >
I read the guide when I first set up distcc, but it didn't provide enough detail for me to understand. I have two computers, a slow one and a fast one. I would like the fast one to assist the slow one. The fast machine's IP is 192.168.1.2, and the slow is 192.168.1.4. On the fast one, I'm running /etc/init.d/distccd and it's /etc/conf.d/distccd looks like this: carter ~ # cat /etc/conf.d/distccd # /etc/conf.d/distccd: config file for /etc/init.d/distccd DISTCCD_OPTS="" # this is the distccd executable DISTCCD_EXEC="/usr/bin/distccd" # this is where distccd will store its pid file DISTCCD_PIDFILE="/var/run/distccd/distccd.pid" # set this option to run distccd with extra parameters # Default port is 3632. For most people the default is okay. DISTCCD_OPTS="${DISTCCD_OPTS} --port 3632" # Logging # You can change some logging options here: # --log-file FILE # --log-level LEVEL [critical,error,warning, notice, info, debug] # # Leaving --log-file blank will log to syslog # example: --log-file /dev/null --log-level warning # example: --log-level critical DISTCCD_OPTS="${DISTCCD_OPTS} --log-level critical" # SECURITY NOTICE: # It is HIGHLY recomended that you use the --listen option # for increased security. You can specify an IP to permit connections # from or a CIDR mask # --listen accepts only a single IP # --allow is now mandatory as of distcc-2.18. # example: --allow 192.168.0.0/24 # example: --allow 192.168.0.5 --allow 192.168.0.150 # example: --listen 192.168.0.2 DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.1.0/24" #DISTCCD_OPTS="${DISTCCD_OPTS} --listen 192.168.0.2" # set this for niceness # Default is 15 DISTCCD_OPTS="${DISTCCD_OPTS} -N 15" There's no firewall on either. The slow machine is also running /etc/init.d/distccd. It's /etc/conf.d/distccd looks like this: catherine ~ # cat /etc/conf.d/distccd # /etc/conf.d/distccd: config file for /etc/init.d/distccd DISTCCD_OPTS="" # this is the distccd executable DISTCCD_EXEC="/usr/bin/distccd" # this is where distccd will store its pid file DISTCCD_PIDFILE="/var/run/distccd/distccd.pid" # set this option to run distccd with extra parameters # Default port is 3632. For most people the default is okay. DISTCCD_OPTS="${DISTCCD_OPTS} --port 3632" # Logging # You can change some logging options here: # --log-file FILE # --log-level LEVEL [critical,error,warning, notice, info, debug] # # Leaving --log-file blank will log to syslog # example: --log-file /dev/null --log-level warning # example: --log-level critical DISTCCD_OPTS="${DISTCCD_OPTS} --log-level info --log-file /var/log/distccd" # SECURITY NOTICE: # It is HIGHLY recomended that you use the --listen option # for increased security. You can specify an IP to permit connections # from or a CIDR mask # --listen accepts only a single IP # --allow is now mandatory as of distcc-2.18. # example: --allow 192.168.0.0/24 # example: --allow 192.168.0.5 --allow 192.168.0.150 DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.1.0/24" #DISTCCD_OPTS="${DISTCCD_OPTS} --listen 192.168.0.2" # set this for niceness # Default is 15 DISTCCD_NICE="15" Is this right?