Pop_OS 18.04 (Ubuntu Based)
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/PhpstormProjects/HR
to: /home/vagrant/code/HR
- map: ~/PhpstormProjects/Nova
to: /home/vagrant/code/Nova
sites:
- map: hr.test
to: /home/vagrant/code/HR/public
- map: nova.test
to: /home/vagrant/code/Nova/public
databases:
- homestead
I have not tried destroying the box and recreating it. I use non-traditional database drivers that require lots of extra setup on the box (DB2). I will start from scratch and see if the same issue occurs.
Running vagrant reload --provision should make the appropriate changes to the vagrant box and restart php7.3-fpm.
Running vagrant reload --provision makes the appropriate changes to the box. However, fails at restarting php7.3-fpm.
==> homestead-7: Running provisioner: shell...
homestead-7: Running: script: Restarting Nginx
homestead-7: Failed to restart php7.3-fpm.service: Unit php7.3-fpm.service not found.
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.
I connected to the box itself and it does not seem like PHP 7.3 is installed.
The base box you currently have doesn't have 7.3 installed like the new base box does. Whenever we update a base box you need to destroy and up again to get the new base box.
I'd be interested to see your DB2 install and config setup so I can possibly build that into the Homestead base box for you.
@svpernova09 Here is the script I use. On line 4, there is a signed URL. You have to get that URL from here by clicking on the "IBM Data Server Driver for ODBC and CLI (CLI Driver)" option. I would love for this to be built in to the base box. It would help our team tremendously. If you want to get in touch, send me an email bironeaj @ gmail.com
Helped me #943 on home PC and on work PC:
(before backup your databases)
vagrant box remove laravel/homesteadvagrant destroyvagrant box add laravel/homesteadvagrant up --provision
Most helpful comment
Helped me #943 on home PC and on work PC:
(before backup your databases)
vagrant box remove laravel/homesteadvagrant destroyvagrant box add laravel/homesteadvagrant up --provision