I'm finding that when I try to add remote processes with the --machinefile 
option, I'm getting a readout saying that Host Key Verification has failed 
for every line in the machinefile- note that this is not a problem when I 
use the addprocs function to manually add the instances in the file. I'm 
not sure if this is actually a bug, or if there is some fine syntactic 
difference which I am not grasping.

Console version:

julia -p 8 --machinefile machinefile.txt

Manual version:

fid=open("/home/main/data/juliafiles/Julia/machinefile.txt")
rc=readlines(fid)
m={match(r"(\r|\n)",rcd) for rcd in rc}
machines={rc[ma][1:(m[ma].offset-1)] for ma in 1:length(m)}
addprocs(machines;dir="/home/main/data/programfiles/julia/usr/bin")


Reply via email to