vagrant

vagrant error the version of powershell on this host is less than required

断了今生、忘了曾经 提交于 2021-02-08 01:21:53
问题 I have a problem with vagrant. 1) I have Windows 7. 2) Run script in Windows PowerShell 3) Code that i execute: PS D:\vagrants> vagrant --debug 4) my windows Path entry: C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\UCRT\;C:\Program Files\Intel\UCRT\;C:\Program Files (x86)\Intel

unknown filesystem type 'vboxsf' after vagrant up

倖福魔咒の 提交于 2021-02-07 19:16:19
问题 i want to setup environment using vagrant but display error after vagrant up. here is my spec im using : - OS X Yosemite Version 10.10.5 - VirtualBox vesion 5.2.6 - Vagrant 2.0.1 and this is my Vagrant file Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "private_network", ip: "192.168.33.99" config.vm.synced_folder "./", "/vagrant", type:"virtualbox", :owner => 'apache', :group => 'apache', mount_option: ['dmode=777', 'fmode=755'] end but went i run 'vagrant

unknown filesystem type 'vboxsf' after vagrant up

不羁岁月 提交于 2021-02-07 19:08:12
问题 i want to setup environment using vagrant but display error after vagrant up. here is my spec im using : - OS X Yosemite Version 10.10.5 - VirtualBox vesion 5.2.6 - Vagrant 2.0.1 and this is my Vagrant file Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "private_network", ip: "192.168.33.99" config.vm.synced_folder "./", "/vagrant", type:"virtualbox", :owner => 'apache', :group => 'apache', mount_option: ['dmode=777', 'fmode=755'] end but went i run 'vagrant

unknown filesystem type 'vboxsf' after vagrant up

末鹿安然 提交于 2021-02-07 19:03:26
问题 i want to setup environment using vagrant but display error after vagrant up. here is my spec im using : - OS X Yosemite Version 10.10.5 - VirtualBox vesion 5.2.6 - Vagrant 2.0.1 and this is my Vagrant file Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "private_network", ip: "192.168.33.99" config.vm.synced_folder "./", "/vagrant", type:"virtualbox", :owner => 'apache', :group => 'apache', mount_option: ['dmode=777', 'fmode=755'] end but went i run 'vagrant

vagrant can't find existing box

我的梦境 提交于 2021-02-07 13:18:53
问题 i was add box with local file from https://dl.dropboxusercontent.com/s/x1085661891dhkz/lxc-centos6.5-2013-12-02.box vagrant box add centos centos.box vagrant init centos my shell: cheneytekimbp:vagrant-centos zicjin$ vagrant box list centos (lxc, 0) lucid32 (virtualbox, 0) cheneytekimbp:vagrant-centos zicjin$ vagrant up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'centos' could not be found. Attempting to find and install... default: Box Provider: virtualbox

Vagrant Warning: Connection refused. Retrying

旧城冷巷雨未停 提交于 2021-02-07 11:37:12
问题 Testing default example $ vagrant init hashicorp/precise32 $ vagrant up My box: Windows 8.1 VirtualBox 5.0.2 Vagrant 1.7.4 Intel i7-4700MQ CPU witch seems to have Intel® Virtualization Technology (VT-x) http://ark.intel.com/products/75117/Intel-Core-i7-4700MQ-Processor-6M-Cache-up-to-3_40-GHz I know this is common error but after trying everything I still cannot make it work While VM shows: And I can log in successfully: Firewall / Antivirus turned off. Hyper-V is not installed I have tried

vagrant slow page load after 60 seconds from last request

二次信任 提交于 2021-02-07 10:45:26
问题 My Vagrant box running a classic LAMP stack (ubuntu 14, php 5.5.9) serves pages slowly (~ 5.3/5.5 secs) if more than 60 seconds passed since last page load. The "normal" page load (before passing the 60 secs limit) is ~0.2 sec. The application files are shared from the host system via NFS. What I've debugged so far: it only happens to requests hitting the application (which is a laravel 5 application) happens even if no queries are made to the db if I die() at the very top of the application

Ansible provisioning ERROR! Using a SSH password instead of a key is not possible

醉酒当歌 提交于 2021-02-05 21:35:25
问题 I would like to provision with my three nodes from the last one by using Ansible. My host machine is Windows 10. My Vagrantfile looks like: Vagrant.configure("2") do |config| (1..3).each do |index| config.vm.define "node#{index}" do |node| node.vm.box = "ubuntu" node.vm.box = "../boxes/ubuntu_base.box" node.vm.network :private_network, ip: "192.168.10.#{10 + index}" if index == 3 node.vm.provision :setup, type: :ansible_local do |ansible| ansible.playbook = "playbook.yml" ansible.provisioning

Ansible provisioning ERROR! Using a SSH password instead of a key is not possible

天涯浪子 提交于 2021-02-05 21:35:09
问题 I would like to provision with my three nodes from the last one by using Ansible. My host machine is Windows 10. My Vagrantfile looks like: Vagrant.configure("2") do |config| (1..3).each do |index| config.vm.define "node#{index}" do |node| node.vm.box = "ubuntu" node.vm.box = "../boxes/ubuntu_base.box" node.vm.network :private_network, ip: "192.168.10.#{10 + index}" if index == 3 node.vm.provision :setup, type: :ansible_local do |ansible| ansible.playbook = "playbook.yml" ansible.provisioning

Docker vs Vagrant

爱⌒轻易说出口 提交于 2021-02-05 06:10:59
问题 Every Docker image, as I understand, is based on base image - for example, Ubuntu. And if I want to isolate any process I should deploy ubuntu docker base image ( where is difference with Vagrant here? ), and create a necessary subimage after it installing on ubuntu image? So, if Ubuntu is launched on Vagrant and on Docker, where is practice difference? And if to use docker provider in Vagrant - where here is difference between Vagrant and Docker? And, in Docker is it possible to isolate