mlvagrant
mlvagrant copied to clipboard
Scripts for bootstrapping a local MarkLogic cluster for development purposes using https://www.vagrantup.com/ and https://www.virtualbox.org/.
centos 7 uses systemctl, which has a different syntax: `sudo systemctl enable httpd`
In the new Mac OS you can't have directories or files (or soft links) under /space/software ML Vagrant needs to use a new host path within the user's home directory
Would like to be able to spin up a dev instance of DHF5 and MarkLogic 10 onCentOS 7.6
sudo yum install krb5-devel.x86_64
If you have older node pre-installed, yum install nodejs sometimes sticks to older version. You need additional steps: /bin/rm -rf /var/cache/yum /usr/bin/yum remove -y nodejs /bin/rm /etc/yum.repos.d/nodesource* /usr/bin/yum clean all...
Using https://github.com/smdahlen/vagrant-digitalocean we can add digital ocean support to quickly launch marklogic clusters, will involve adding a new provider to the Vagrantfile
Vagrant has built-in support for providers like Docker and Hyper-V. Would love to see both supported: https://docs.vagrantup.com/v2/hyperv/index.html (For Docker see also #78..)
It likely means trading out the provider, checking provider settings, and Docker style base boxes.. https://docs.vagrantup.com/v2/docker/index.html
See https://github.com/grtjn/mlvagrant/compare/master...peetkes:master (needs rebase) Maybe consider coupling different mlvagrant projects, instead of generating both clusters within one cluster?