A collection of the different vagrant templates for personal usage. Vagrant can be installed from here.
- In case of problmes with the rsync utility on Windows
- 1st posible solution add following directory "..\Vagrant\embedded\usr\bin" to the PATH variable
- 2nd possible solution - Change "Vagrantfile" directly before installation here "c:\Users<USER>.vagrant.d\boxes\centos-VAGRANTSLASH-7" (more here hashicorp/vagrant#6696)
#config.vm.synced_folder ".", "/vagrant", type: "rsync"
- Connect to Your Vagrant Virtual Machine with PuTTY via Private Key
- Connect to Your Vagrant Virtual Machine with PuTTY
- NOTE: Just convert given private key into PuTTY format by skiping step 4
- Connect to Your Vagrant Virtual Machine with PuTTY
- How do I install a Vagrant Linux box that has a desktop / GUI ?
- In case of problmes with latest version of vagrant on Windows do the following:
- Install latest "Windows Management Framework"
- Additionally, latest version of the "PowerShell" could be installed - https://github.com/PowerShell/PowerShell/releases
- Resizing Vagrant box disk space
- Use custom vagrant installation
set PATH=c:\Soft\Vagrant-v1.9\bin\;%PATH%
- Deploy VM on different disk
set PATH=c:\Program Files\Oracle\VirtualBox\;%PATH%
VBoxManage setproperty machinefolder <PATH>
vagrant up
VBoxManage setproperty machinefolder default
- AnacondaVM
- LAMP
- PredictionIO
- Seldon
- Installing the Seldon Virtual Machine
- Issue with synced folder
vagrant plugin install vagrant-winnfsd
- BerkleyBigDataSparkMOOCs
- Hortonworks Data Platform
- An starting vagrant file that helps in installing Hadoop to the virtual environment. For more details check README file.
- FlinkVM
- H2O
- KafkaCluster
- Mostly based on the following repository - https://github.com/eucuepo/vagrant-kafka
- Changes
- Download RPM packed of the JDF manually and place into "rpm" folder (from time to time automated download is not working in provision)
- PentahoCE
- Mostly based on the following repository - https://github.com/lricardo/vagrant-pentaho-biserver-5
- Changes:
- Put downloads into folder (/vagrant/downloads/)
- Knowage
- Using the following docker images - https://github.com/KnowageLabs/Knowage-Server-Docker
- Dependencies: docker plugin for vagrant
- Changes:
- Put downloads into folder (/vagrant/downloads/)
- NiFi
- Based on the following repository - https://github.com/minyk/nifi-sandbox
- ApamaCE
- Semi-automated installation of Apama Community Edition together with some initial scripts
- OpenScoring
- An API that is able to accept PMML as input, evaluate it and output results
- ModelDB
- A software stack that installs a machine learning models management tool
- ModelDBAndDocker
- The same modelDB installation, but via official docker
- [SupersetAndDocker]
- Apache Superset (incubating) is a modern, enterprise-ready business intelligence web application
- vagrant-multi-putty
- allows to use putty out of the box in the same manner as embedded ssh
- https://github.com/nickryand/vagrant-multi-putty
- vagrant-docker-compose
- allows to use docker inside the vagrant machine directly
- https://github.com/leighmcculloch/vagrant-docker-compose
- How to Update a Single Running docker-compose Container
- Useful when container contentiously restarts itself
- Useful when some commands need to be applied
- Issues with memory -> increase swap memory
- Prune/clean docker
- https://forums.docker.com/t/some-way-to-clean-up-identify-contents-of-var-lib-docker-overlay/30604
docker volume rm $(docker volume ls -qf dangling=true)
- https://forums.docker.com/t/some-way-to-clean-up-identify-contents-of-var-lib-docker-overlay/30604