Skip to content

Instantly share code, notes, and snippets.

View cbj4074's full-sized avatar

Ben Johnson cbj4074

View GitHub Profile
@cbj4074
cbj4074 / gist:9d21fe93a0c14dc7740f0333eed8cd7c
Created December 4, 2018 17:10
Vagrant failure when using winnfsd plugin with Hyper-V provider
DEBUG provider: IP: 172.18.124.170
INFO machine: Calling action: read_state on provider Hyper-V (4be547eb-8998-489b-95f3-8f1f4f82f423)
INFO interface: Machine: action ["read_state", "start", {:target=>:"homestead-7"}]
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_read_state #<Vagrant::Action::Builder:0x0000000004a22020>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x0000000004a023b0>
INFO warden: Calling IN action: #<VagrantPlugins::HyperV::Action::ReadState:0x0000000004a02838>
INFO subprocess: Starting process: ["C:\\windows\\System32\\WindowsPowerShell\\v1.0\\/powershell.EXE", "-NoLogo", "-NoProfile", "-NonInteractive", "-ExecutionPolicy", "Bypass", "$env:PSModulePath=$env:PSModulePath+';C:\\HashiCorp\\Vagrant\\embedded\\gems\\2.2.1\\gems\\vagrant-2.2.1\\plugins\\providers\\hyperv\\scripts\\utils'; &('C:\\HashiCorp\\Vagrant\\embedded\\gems\\2.2.1\\gems\\vagrant-2.2.1\\plugins\\providers\
@cbj4074
cbj4074 / oracle-database-xe.sh
Last active October 3, 2019 20:49
Automated Installation and configuration for Oracle Database XE 18
#!/bin/sh
echo 'Installing Oracle Database XE...'
# See: https://www.oracle.com/database/technologies/appdev/xe/quickstart.html
# /vagrant_data is a directory that is mounted from the host filesystem and
# contains the installation binary, "oracle-database-xe-18c-1.0-1.x86_64.rpm".
cd /vagrant_data
@cbj4074
cbj4074 / vagrant-debug.txt
Created January 10, 2020 02:11
Detailed Vagrant logging output for "vagrant --debug box update" command on Windows 1909, segfaults
vagrant : INFO global: Vagrant version: 2.2.6
At line:1 char:1
+ vagrant --debug box update *> C:\Users\Anon\Desktop\vagrant.txt
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: ( INFO global: Vagrant version: 2.2.6:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
INFO global: Ruby version: 2.4.9
INFO global: RubyGems version: 2.6.14.4
@cbj4074
cbj4074 / docker-compose.yml
Created April 14, 2021 15:13
docker-compose.yml entry for adding phpMyAdmin to Laravel 8 Sail
services:
phpmyadmin:
networks:
- sail
@cbj4074
cbj4074 / docker-compose.yml
Created April 27, 2021 12:40
How to configure docker-compose.yml to enable phpMyAdmin in Laravel Sail
services:
phpmyadmin:
image: phpmyadmin
restart: always
ports:
- 8080:80
environment:
- PMA_HOST=mysql
networks:
- sail