Quickstart with Vagrant
Â
Install VirtualBox, see
https://www.virtualbox.org/
Â
Install Vagrant, see
https://www.vagrantup.com/docs/installation/
Â
On command-line, change directory to the place where the Vagrantfile is, then:vagrant init ubuntu/precise64
vagrant destroy -f; vagrant up
If you have more than one network on your host machine (like wired and also wireless), you may be asked to choose during the vagrant up
.
At the end, the 'vagrant up' should output a URL for testing.
Insert this URL in a Firefox browser to test the system.
Â
To login to the Vagrant virtual machine that is running NetarchiveSuite:vagrant ssh
Logout again with the exit
command.
Â
To take down the running Vagrant virtual machine, do a
vagrant destroy
Â