Estou tendo problema nessa nova configuração. No final do comando "vagrant up memcached" o sistema retorna o seguinte erro:
"rsync" could not be found on your PATH. Make sure that rsync is properly installed on your system and available on the PATH.
A máquina foi instalada, mas não consigo fazer nada nela. Segue a saida do vagrand status:
vitor@ghost:~/ambiente-dev/bionic$ vagrant status Current machine states:
phpweb running (virtualbox) mysqlserver running (virtualbox) ansible poweroff (virtualbox) memcached poweroff (virtualbox)
This environment represents multiple VMs. The VMs are all listed
above with their current state. For more information about a specific
VM, run vagrant status NAME
.
vitor@ghost:~/ambiente-dev/bionic$ vagrant up memcached
Bringing machine 'memcached' up with 'virtualbox' provider...
==> memcached: Checking if box 'centos/7' version '2004.01' is up to date...
==> memcached: Fixed port collision for 22 => 2222. Now on port 2201.
"rsync" could not be found on your PATH. Make sure that rsync is properly installed on your system and available on the PATH.
Segue o novo código:
config.vm.define "memcached" do |memcached| memcached.vm.box = "centos/7" memcached.vm.provider "virtualbox" do |vb| vb.memory = 512 vb.cpus = 1 vb.name = "centos7_memcached" end end