Icaro: install scripts seems stuck

Hi there, I’m trying to configure the server with vagrant in a virtual box environment but I get locked in this step:

====================================================================
healperci@healperci-X540LJ:/icaro/deploy$ vagrant up --provision
Bringing machine 'icaro2' up with 'virtualbox' provider...
==> icaro2: Checking if box 'centos/7' is up to date...
==> icaro2: Running provisioner: ansible...
Vagrant has automatically selected the compatibility mode '2.0'
according to the Ansible version installed (2.7.10).

Alternatively, the compatibility mode can be specified in your Vagrantfile:
https://www.vagrantup.com/docs/provisioning/ansible_common.html#compatibility_mode

    icaro2: Running ansible-playbook...

PLAY [icaro] *******************************************************************
skipping: no hosts matched

PLAY [wax] *********************************************************************
skipping: no hosts matched

PLAY [sun] *********************************************************************
skipping: no hosts matched

PLAY [ade] *********************************************************************
skipping: no hosts matched

PLAY [icarodb] *****************************************************************
skipping: no hosts matched

PLAY RECAP *********************************************************************

==> icaro2: Running provisioner: shell...
    icaro2: Running: inline script
==================================================================

It says “no host matched” don’t know what to do from here, I can’t see the server webpage ¿Any Ideas?

@Amygos can you give help here?

Hi @hector, from the output that you posted seems that you have changed the prop config.vm.define from:

  config.vm.define "icaro"

to:

config.vm.define "icaro2"

the ansible playbooks are configured for use the icaro hostname, so if you have to change it, you must also change the prop ansible.groups like that:

    ansible.groups = {
      "icaro" => ["icaro2"],
      "sun" => ["icaro2"],
      "wax" => ["icaro2"],
      "ade" => ["icaro2"],
      "icarodb" => ["icaro2"]

Sorry for late replay, it was a busy month :sweat_smile:

4 Likes