Code Monkey home page Code Monkey logo

idemday-ansible-shibboleth's Introduction

ANSIBLE CODE TO INSTALL SHIBBOLETH PRODUCTS

Requirements

Simple flow to install and configure a Shibboleth IdP

  1. Become ROOT:

    • sudo su -
  2. Retrieve GIT repository of the project:

    • apt-get install git
    • cd /opt ; git clone https://github.com/[GEANT|malavolti]/ansible-shibboleth.git
  3. Create the right inventory file/files about your IdP servers by following the template provided:

    • inventories/development/development.ini for your development servers.
    • inventories/production/production.ini for your production servers.
    • inventories/test/test.ini for your test servers.
  4. Create your .vault_pass.txt that contains the encryption password (this is needed ONLY when you use Ansible Vault):

    • cd /opt/ansible-shibboleth
    • openssl rand -base64 64 > .vault_pass.txt
  5. Download the Identity Provider source:

    • cd /usr/local/src
    • wget https://shibboleth.net/downloads/identity-provider/3.3.1/shibboleth-identity-provider-3.3.1.tar.gz
    • tar xzf /usr/local/src/shibboleth-identity-provider-3.3.1.tar.gz
    • rm -f /usr/local/src/shibboleth-identity-provider-3.3.1.tar.gz
  6. Generate each IdP Metadata Certificates and Keys by running these commands:

    • cd /opt/ansible-shibbleth/scripts
    • python create-credentials.py FQDN

    and obtain the password you must set on "idp_config['sealer_pw']" and the "idp_config['keystore_pw']" host vars (Point 7.)

  7. Create each IdP configuration file by copying one of these templates:

    • /opt/ansible-shibboleth/#_environment_#/host_vars/FQDN.yml-template
    • /opt/ansible-shibboleth/#_environment_#/host_vars/FQDN.yml-template-no-ldap

    into the proper /opt/ansible-shibboleth/#_environment_#/host_vars/FQDN.yml This file will provide to Ansible all variables needed to install and to configure a Shibboleth IdP

  8. Encrypt the IdP configuration file with Ansible Vault (Optional: this is needed ONLY when you need Ansible Vault):

    • cd /opt/ansible-shibboleth
    • ansible-vault encrypt inventories/#_environment_#/host_vars/FQDN.yml --vault-password-file .vault_pass.txt
  9. Insert the IdP's SSL Certificate renamed into "FQDN.crt", the IdP's SSL Certificate Key renamed into "FQDN.key" and the Certification Authority certificate inside /opt/ansible-shibboleth/roles/common/files/FQDN/ directory. (be sure to replace FQDN value with full qualified domain nameof the IdP)

  10. Insert the IdP style files (flag, favicon and logo) in the "roles/idp/files/restore/FQDN/styles" by following the README.md file. A "hostname-sample" has been created to help you with this. (If you have chosen to create an IdP with LDAP, be sure to put the organization logo in the roles/phpldapadmin/files/restore/FQDN/images/logo.png file. An organization logo MUST BE, at least, an image with dimensions 80x60 pixels or their multiples)

  11. If you install also phpLDAPadmin, remember to put the logo (80x60 pixels or its multiples) into the "roles/phpldapadmin/files/restore/FQDN/images/logo.png" file.

  12. Add the IdP Information and Privacy Policy page templates in the "roles/idp/templates/styles/" in your language by copying the english 'en/' sample and changing each "idp_metadata['en']" (inside the "info.html.j2" and "privacy.html.j2" pages) and be sure to adapt the text of the pages to your needs. This step can be avoided if you have already info and privacy pages by setting to "no" the variable "create_info_and_pp_pages".

The ansible recipes use the languages provided by the "idp_metadata" dictionary so you HAVE TO LEAVE the default language "en" and add all other languages that your IdP will support and for which you have provided the needed files. (Point 7.)

  1. Execute this command to run Ansible on develoment inventory and to install and configure an IdP only on a specific server (FQDN): ansible-playbook site.yml -i inventories/development/development.ini --limit FQDN --vault-password-file .vault_pass.txt

  2. Execute this command to run Ansible on develoment inventory and to install and configure an IdP on all development servers: ansible-playbook site.yml -i inventories/development/development.ini --vault-password-file .vault_pass.txt

Documentation

The inventories are located into different environments (production,development, test, ...):

  • inventories/development/development.ini
  • inventories/production/production.ini
  • inventories/test/test.ini
  • ...

Each environment represent the type of IdP to be installed with different labels:

  • [Debian-IdP-with-IdM]
  • [Debian-IdP-without-IdM]
  • ...

The "site.yml" file contains what will be installed on the machine provided by the environment:

  • shib-idp-servers.yml (Install,Configure and Run Shibboleth IdP servers without an Identity Management)
  • shib-idp-idm-servers.yml (Install,Configure and Run Shibboleth IdP servers with an Identity Management)
  • ...

The "shib-idp-servers.yml" and "shib-idp-idm-servers.yml" contains:

  • hosts (who will receive the sync)
  • remote_user (who will access via SSH on the servers)
  • roles (what will be installed and configured on the servers)

Each "vars/" directories contains (at least, for each role):

  • Debian.yml (will contains all variables debian-oriented)
  • RedHat.yml (will contains all variables redhat-oriented)

The "host_vars/" directory contains one FQDN.yml file for each server and it contains specific variables for the host into the specific environment. (These files have to be encrypted (you can do this with Ansible Vault) if shared on GitHub or somewhere other)

The "roles/idp/vars/attr-defs-dict-java7.yml" and "roles/idp/vars/attr-defs-dict-java8.yml contain all the attribute definitions supported by default on an IdP for Java 7 or 8. If you need to limit or change the default Attribute Definitions provided, you have to implement your "idp_attrDef" dictionary on the IdP "FQDN.yml" file.

The default mirror site is "https://mi.mirror.garr.it/mirrors/debian/". If you want to change it, add the variable "mirror" on your inventories/#_environment_#/host_vars/FQDN.yml.

The openLDAP logs will be stored on "/var/log/slapd/" directory.

The recipes can configure an IdP to be monitored through Check_MK. To be able to add the IdP hosts on the check_mk centralized server, it is needed create an automation user on check_mk server and provide its username and secret as requested by FQDN.yml To reach this, it is needed to configure check_mk dictionary on your FQDN.yml file.

The recipes offer the possibility to configure the IdP to send its logs to a Rsyslog Server through RELP protocol. To use this feature fill the rsyslog server ip and port parameters on your FQDN.yml file.

The recipes offer the possibility to configure the IdP to send its mysql and ldap backups to a Backups Server through RSYNC. The best way found to offer this feature on each IdP is to share a pair of SSH credentials, authorized by backups server, on all IdP and consent them to write their own backups on a specific directory named with their FQDN. The SSH credentials (SSH-CERT and SSH-KEY) HAVE TO BE generate and placed into roles/rsync/files/ssh renamed as README says. To use this feature fill the backups server ip and remote_path parameters on your FQDN.yml file, where remote_path is the directory on the backups server where every IdP will create their own directory and put their mysql/ldap backups.

Restore Procedures

Databases Restore

  1. Retrieve database backup files from /var/local/backups/mysql/ on the IdP:

  2. Put the backups file (for shibboleth and statistics database) into:

    • roles/idp/files/restore/FDQN/mysql-backup/shibboleth-db.sql.gz
    • roles/idp/files/restore/FQDN/mysql-backup/statistics-db.sql.gz
  3. Set the IDP configuration variable idp_db_restore to "True" on its host_vars file

  4. Run again the playbook

LDAP Restore

  1. Retrieve LDAP backup files from /var/local/backups/ldap/ on the IdP:

  2. Put the LDAP backup into:

    • roles/openldap/files/restore/FQDN/ldap-backup/ldap-users.ldif.gz
  3. Set the IDP configuration variable idp_ldap_restore to "True" on its host_vars file

  4. Run again the playbook

Useful Commands

--- development.ini ---
[Debian-IdP-with-IdM]
ansible-slave-2.test.garr.it

[Debian-IdP-without-IdM]
ansible-slave-1.example.garr.it
-----------------------
  1. Test that the connection with the server(s) is working:

    • ansible all -m ping -i /opt/ansible-shibboleth/inventories/#_environment_#/#_environment_#.ini -u debian ("debian" is the user used to perform the SSH connection with the client to synchronize)
  2. Get the facts from the server(s):

    • ansible GROUP_NAME_or_HOST_NAME -m setup -i /opt/ansible-shibboleth/inventories/#_environment_#/#_environment_#.ini -u debian

    Examples:

    • without encrypted files: ansible GROUP_NAME_or_HOST_NAME -m setup -i /opt/ansible-shibboleth/inventories/#_environment_#/#_environment_#.ini -u debian
    • with encrypted files: ansible GROUP_NAME_or_HOST_NAME -m setup -i /opt/ansible-shibboleth/inventories/#_environment_#/#_environment_#.ini -u debian --vault-password-file .vault_pass.txt

    (".vault_pass.txt" is the file you have created that contains the encryption password)

  3. Encrypt files:

    • ansible-vault encrypt inventories/#_environment_#/host_vars/#_full.qualified.domain.name_#.yml --vault-password-file .vault_pass.txt
  4. Decrypt Encrypted files:

    • ansible-vault decrypt inventories/#_environment_#/host_vars/#_full.qualified.domain.name_#.yml --vault-password-file .vault_pass.txt
  5. View Encrypted files:

    • ansible-vault view inventories/#_environment_#/host_vars/#_full.qualified.domain.name_#.yml --vault-password-file .vault_pass.txt

Authors

Original Author and Development Lead

idemday-ansible-shibboleth's People

Contributors

malavolti avatar nunzionapoli avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.