vagrant 添加带版本的homestead

一般情况下,我们都是用vagrant box add 的方式添加vagrant box,但用该方式添加的vagrant box版本号是为0的,如果对版本没有要求,这没啥问题,但homestead对版本是有要求的,不然添加后,也会提示找不到box,使用的方式添加metadata.json可以带版本号metadata.json{ "name": "larave

- 阅读全文 -

homestead vagrant up 报VERR_ALREADY_EXISTS

今天在部署homestead时发现vagrant up 报错The name of your virtual machine couldn't be set because VirtualBox is reporting another VM with that name already exists. Most of the time, this is because of an error w

- 阅读全文 -

vagrant 使用其他用户进行登录

系统是debian10默认是采用vagrant登录的su - root #切换到root adduser -m odoo #创建用户 usermod -aG sudo odoo #对odoo 设置sudo访问权限 visudo /etc/sudoers.d/odoo #创建配置文件 echo "odoo ALL=(ALL) NOPASSWD:ALL" | sudo te

- 阅读全文 -

vagrant 自定义ssh端口

编辑Vagrantfile,要先禁用22转到到默认的2222,然后再启用新的端口config.vm.network "forwarded_port", guest: 22, host: 2222, id: "ssh", disabled: "true" config.vm.network "forwarded_port"

- 阅读全文 -