ArkCase / arkcase-ce

Packer configuration and Ansible plays to create a Vagrant virtual machine with services required to run ArkCase.
16 stars 16 forks source link

Cannot connect to the Arkcase 3.3.1 VM #525

Open vishnoor opened 1 year ago

vishnoor commented 1 year ago

I am trying to bootup the VM from the pre-built vargrant box https://vagrantcloud.com/arkcase/boxes/arkcase-ce/versions/3.3.1/providers/virtualbox.box

However the Authentication fails. What to do?

Best Regards Vishnoo Screenshot 2022-12-20 151606

srinivasagunturu commented 1 year ago

Hi @vishnoor ,

Are you planning to install Arkcase on your local machine?

ameasere commented 3 months ago

Apologies for the necropost, but we are having this issue too. ArkCase in the CentOS VM via Vagrant boots perfectly fine, but SSH authentication fails:

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'arkcase/arkcase-ce' version '3.3.1' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Authentication failure. Retrying...
    default: Warning: Authentication failure. Retrying...
    default: Warning: Authentication failure. Retrying...

Vagrantfile is as follows:

Vagrant.configure("2") do |config|
  config.vm.box = "arkcase/arkcase-ce"
  config.vm.box_version = "3.3.1"
  config.vm.box_url = "https://app.vagrantup.com/arkcase/boxes/arkcase-ce"
  config.vm.network "private_network", type: "dhcp", netmask: "255.255.255.0", dhcp_ip:"192.168.56.100", dhcp_lower: "192.168.56.101", :dhcp_upper=>"192.168.56.254"
  config.vm.hostname = "arkcase-ce.local"
  # disable the default synced folder
  config.vm.synced_folder '.', '/vagrant', disabled: true
end