From 0c7c6e81175444b03bc8fa1da602e05d379a647c Mon Sep 17 00:00:00 2001 From: Melvin Rook Date: Thu, 18 Aug 2016 10:24:15 +0300 Subject: [PATCH] Resolving the authentication failure. Message: node3: Warning: Remote connection disconnect. --- Vagrant/Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrant/Vagrantfile b/Vagrant/Vagrantfile index 2721cf8..e300c18 100644 --- a/Vagrant/Vagrantfile +++ b/Vagrant/Vagrantfile @@ -7,6 +7,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| r = numNodes..1 (r.first).downto(r.last).each do |i| config.vm.define "node#{i}" do |node| + config.ssh.insert_key = false node.vm.box = "centos65" node.vm.box = "aerospike/centos-6.5" node.vm.provider "virtualbox" do |v| @@ -26,4 +27,4 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end end -end \ No newline at end of file +end