A manual to run the deploy to a single target machine (e.g. a hosted VM) is in the wiki: Installation steps to deploy OpenConext on a single system.
To run a development instance on your local machine with Vagrant and VirtualBox, follow these steps. They are based on Mac OS X and the Open Source Homebrew package manager.
It is also possible to deploy using Vagrant and libvirt/qemu (on Linux). Instructions are provided below.
VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product, downloads and user manual can be found on the VirtualBox website.
Vagrant provides easy to configure, reproducible, and portable work environments built on top of industry-standard technology and controlled by a single consistent workflow to help maximize the productivity and flexibility of you and your team.
For installation instructions see the website.
You will need at least Vagrant 1.7. Do not use Vagrant 1.8.5, which contains a bug that makes that the provisioning fails with the message "Warning: Authentication failure. Retrying...". Also, more recent versions (around 1.9.1) have problems detecting the network devices inside the VM, causing vagrant to fail to connect using ssh.
To install both with Homebrew:
brew cask install vagrant
brew cask install virtualbox
With the above commands you get the latest versions. There might be incompatibilities. Vagrant will tell you and if you need a different version install cask versions and install the correct version of virtualbox and / or vagrant:
brew tap homebrew/cask-versions
brew cask install virtualbox4330101610
Ansible is the configuration tool we use to describe our servers. Installation instruction can be found on the Ansible website. The minimum required version of Ansible is 2.4. To install for development with Homebrew:
brew install python
pip install --upgrade setuptools
pip install --upgrade pip
brew install ansible
The VM will install everything on a two boxes for demo purposes.
To provision the VM please run:
Clone the repository:
git clone https://github.com/OpenConext/OpenConext-deploy.git
cd OpenConext-deploy
./provision vm
When the script is done, wait a little while to let all services come up and initialize themselves. Then point your browser to https://welcome.vm.openconext.org
These are the steps the above script performs:
- Setup a Vagrant VM and will make sure the HOSTS file is able to handle the defined base_domain
- Setup a MariaDB server.
- Inserts entities and metadata in Manage and initial load of engineblock to bootstrap.
- Install all Java apps for the openconext platform.
- Install all PHP apps for the openconext platform.
- Install Haproxy for loadbalacing and SSL termination on the loadbalancer machine
- Install mujina as IDP and SP for the VM environment.
We need pseudo-DNS entries so that your browser can reach the VM-platform we just installed. So, add this very long line to your /etc/hosts
file:
192.168.66.98 welcome.vm.openconext.org static.vm.openconext.org metadata.vm.openconext.org db.vm.openconext.org engine.vm.openconext.org profile.vm.openconext.org mujina-sp.vm.openconext.org mujina-idp.vm.openconext.org teams.vm.openconext.org voot.vm.openconext.org pdp.vm.openconext.org engine-api.vm.openconext.org aa.vm.openconext.org link.vm.openconext.org manage.vm.openconext.org connect.vm.openconext.org
Here, the ip-address 192.168.66.98
refers to the address that is mentioned in ./Vagrantfile.
Go to https://welcome.vm.openconext.org. To ssh to the machines use the following:
vagrant ssh lb_centos7
vagrant ssh apps_centos7
(using vagrant ssh
without a VM specified leads to the Apps VM)
The lb vm contains haproxy. The apps vm contains all the applications, apache and database.
Instead of using Virtualbox as described above, it is also possible to use libvirt/qemu on Linux machines. This requires a number of additional steps.
- Make sure you have a recent version of vagrant, and that libvirt/qemu is working as expected for normal VMs (e.g., check if virt-manager works correctly to create a new VM).
- Install the
vagrant-libvirt
andvagrant-mutate
plugins:
╰─▶ vagrant plugin install vagrant-libvirt
╰─▶ vagrant plugin install vagrant-mutate
(or use the version provided by your distribution).
3. Download the Openconext base CentOS7 image. This is a Virtualbox-image, so
it needs to be converted to a libvirt-image using vagrant mutate
:
╰─▶ vagrant box add https://build.openconext.org/vagrant_boxes/virtualbox-centos7.box --name CentOS-7.0
╰─▶ vagrant mutate CentOS-7.0 libvirt --force-virtio
- Vagrant should now have two variants of the CentOS-7.0 image:
╰─▶ vagrant box list
CentOS-7.0 (libvirt, 0)
CentOS-7.0 (virtualbox, 0)
- From a checked-out version of the OpenConext-deploy repository, run the following command to check if the boxes come up:
╰─▶ vagrant up --provider libvirt lb_centos7
╰─▶ vagrant up --provider libvirt apps_centos7
(set the environment variable VAGRANT_LOG=debug
to increase verbosity of
anything goes wrong.
6. You should be set to run the ./provision vm
command.
To update single applications - e.g. release - use tags:
./provision $env $remote_user path/to/your/secrets.yml --tags eb
Where: $env: Your environment. The vm is located in environments/vm. If you use your own repository you'll have to place it in environments_external $remote_user: The remote user with sudo permissions path/to/your/secrets.yml: The secrets used by Ansible are externalized. For the VM the secrets are in this GitHub repo. For other environments (your installation) they can be located in a separate repository.
When making changes, please consider that people are continuously deploying vm's from master. Therefore, please do your best to keep HEAD in a working state, and make any invasive changes like adding new components or refactoring on a separate branch.
These files are licensed under version 2.0 of the Apache License, as described in the file LICENSE.
- You can ask questions on the OpenConext mailing list
- Or you can join our Slack Workspace
To provision the VM use the following (password is vagrant and sudo password is
ansible-playbook -u vagrant -i ./environments/vm/inventory -K --e secrets_file=./environments/vm/secrets/vm.yml provision-vm.yml
To provision a certain role use tags:
ansible-playbook -u vagrant -i ./environments/vm/inventory -K --e secrets_file=./environments/vm/secrets/vm.yml provision-vm.yml --tags vm_only_provision_manage_eb
Setting up a development environment is described in the file DEVELOPMENT.