New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Homestead v11.0.0 - General Upgrade Notes #1422
Comments
|
after upgrading to this version, I receive the following message after entering
my Also, I tried to include but the same error message appeared. Please advice, |
|
Please show the full log of vagrant destroy && vagrant up
…--
- Joe Ferguson
JoeFerguson.me
osmihelp.org
On Jun 15, 2020, 03:11 -0500, Ya Basha ***@***.***>, wrote:
after upgrading to this version, I receive the following message after entering vagrant up
code-server: Job for nginx.service failed because the control process exited with error code.
code-server: See "systemctl status nginx.service" and "journalctl -xe" for details.
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.
systemctl status nginx.service output:
nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Mon 2020-06-15 07:57:28 UTC; 11min ago
Docs: man:nginx(8)
Process: 954 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=1/FAILURE)
Jun 15 07:57:27 homestead systemd[1]: Starting A high performance web server and a reverse proxy server...
Jun 15 07:57:28 homestead nginx[954]: nginx: [emerg] cannot load certificate "/etc/ssl/certs/*.code-snippet.test.crt": BIO_new_file() failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/etc/ssl/certs/*.code>Jun 15 07:57:28 homestead nginx[954]: nginx: configuration file /etc/nginx/nginx.conf test failed
Jun 15 07:57:28 homestead systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
Jun 15 07:57:28 homestead systemd[1]: nginx.service: Failed with result 'exit-code'.
Jun 15 07:57:28 homestead systemd[1]: Failed to start A high performance web server and a reverse proxy server.
my Homestead.yaml file:
---
ip: "192.168.20.20"
memory: 4096
cpus: 4
provider: virtualbox
name: code-server
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: code
to: /home/vagrant/code
options:
fsnotify: true
exclude:
- node_modules
- vendor
backup: false
variables:
- key: APP_ENV
value: local
sites:
- map: project.test
to: /home/vagrant/code/project/public
wildcard: "yes"
databases:
- project_db
features:
- mariadb: false
- ohmyzsh: true
- webdriver: false
ports:
- send: 3000
to: 3000
- send: 50000
to: 5000
- send: 7777
to: 777
protocol: udp
Also, I tried to include
services:
- enabled:
- "mysql"
- disabled:
- ***@***.***"
- "nodejs"
but the same error message appeared.
Please advice,
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
|
How do I try v11 using the "per project installation"? Running
[EDIT] Seems the v10 box is not available for vmware. |
|
Give this a spin: `composer require laravel/homestead:dev-focal-major-version`
…On Sat, Jun 20, 2020 at 12:07 PM Emin ***@***.***> wrote:
How do I try v11 using the "per project installation"?
I've tried changing the composer.json to "laravel/homestead": ***@***.***",
and then composer update. Which seems to work fine. But how do I update
the Vagrantfile in the project root?
Running vendor\laravel\homestead\init.bat results in:
The system cannot find the file specified.
The system cannot find the file specified.
The system cannot find the file specified.
Homestead initialized!
Running vagrant box update results in my-project: Box 'laravel/homestead'
not installed, can't check for updates.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1422 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHMFQWVAXFK6X6HLCGSHXLRXTUD5ANCNFSM4NDASE5Q>
.
--
- Joe Ferguson
JoeFerguson.me
osmihelp.org
|
|
MongoDB support coming soon: https://jira.mongodb.org/browse/SERVER-44070 |
|
Releasing new base box https://app.vagrantup.com/laravel/boxes/homestead/versions/10.0.0-beta.1 |
Sorry for the delay, Yes, I typically only build Virtualbox for pre-release builds due to the time investment in building & releasing a base box. Example: Tonight I'm releasing a new beta base box and it's taken me 2.5 hours instead of 1.5 hours due to random APT / network timeouts. Unfortunately, it's just a big time investment :/ |
Nice. MongoDB is a must for me. |
|
@eminos https://twitter.com/HomesteadDev/status/1280273116174958592 You should be able to beta test 20.04 now. |
|
Release incoming |
Mongo support 20.04(focal) in v4.2 now. |
New Features 🆕
Enable or Disable Services
Homestead starts several services by default however if your configuration overrides one of these defaults you can specify which services you would like to enable or disable during provisioning. For example if you only needed PostgreSQL 12 your
services:configuration inHomestead.yamlmight look like:This configuration would ensure
postgresql@12-mainservice would be enabled andmysqlwould be disabled from starting at boot. The specified services will also be started or stopped based on their location inenabledanddisabledsections.New Default Versions
mysql8feature script removed)General Notes
apache./etc/ssl/certificatesinstead of/etc/nginx/sslWildcard SSL
Homestead configures a self-signed SSL certificate for each site defined in the
sites:section of yourHomestead.yamlfile. If you would like to generate a wildcard SSL certificate for a site you may add awildcardoption to that site's configuration. By default the site will use the wild card certificate instead of the specific domain certificate.If the
use_wildcardoption is set tono, the wildcard certificate will be generated but will not be used:The text was updated successfully, but these errors were encountered: