Deployment And Administration Guide
For Ubuntu 14.04 and CentOS 7 a package is provided by the INDIGO DataCloud team. To be able to install the packages using the package manager of your system, the repository needs to be added. This is done by adding the INDIGO DataCloud package repository to your system.
For informations on how to add the repository to your system refer to the documentation of your operating system.
After adding the repository one needs to update the package list and then install the Token Translation Service.
apt update
apt install wattson
After adding the repository one needs to update the package list and then install the Token Translation Service.
yum update
yum install wattson
To be able to install wattson from source, you need the go programming language version 1.5 or newer installed on the system.
The go programming language should be in the repository of your Linux distribution.
On Debian/Ubuntu as well as on CentOs it is called 'golang'. So installing go on Debian based distributions is just a
apt install golang
Installing on CentOs is also just a
yum install golang
The next steps download the source and build wattson:
- clone the git repository
- compile wattsongit clone https://github.com/indigo-dc/wattsoncd wattson./utils/compile.shthe binary executable is in the current direcotry called 'wattson'.
One could now copy the binary to e.g.
/usr/bin
.Last modified 4yr ago