Skip to content
Prev 155 / 2152 Next

snow, socket cluster: problem with path to rscript

I solved the problem ;-)

I think that the issue come from that snow is expecting that the name of 
the master has been exported in /etc/hosts (typically by IP master_name) 
on the workers. In my case, it wasn't working before and since I've 
exported it it is working!

The error I did was to check with

#open from the master (212):
socketConnection(port = 10187, server = TRUE)

#and from the slave
socketConnection("192.100.100.212", port = 10187) #from 210

#Even if this works it is not a sufficient condition, for snow to work, 
indeed:
socketConnection("master_name", port = 10187) #from 210
has to be working also



Thanks a lot for the help of Dirk, Luke and Steve, who helped me a lot 
in finding this!!

Matthieu

luke at stat.uiowa.edu a ?crit :