| 1 | = Shibboleth SPv3 Installation on Ubuntu 22.04 LTS = |
| 2 | |
| 3 | Installation assumes you have already installed Ubuntu Server 22.04 with default configuration and has a public IP connectivity with DNS setup |
| 4 | |
| 5 | Lets Assume your server hostname as sp.YOUR-DOMAIN |
| 6 | |
| 7 | All commands are to be run as root and you may use sudo su to become root |
| 8 | |
| 9 | 1. Install the packages required: |
| 10 | |
| 11 | {{{ |
| 12 | apt update |
| 13 | apt install apache2 ca-certificates vim openssl binutils |
| 14 | }}} |
| 15 | |
| 16 | 2. Modify /etc/hosts |
| 17 | |
| 18 | {{{ |
| 19 | nano /etc/hosts |
| 20 | }}} |
| 21 | {{{ |
| 22 | 127.0.0.1 sp.YOUR-DOMAIN sp |
| 23 | }}} |
| 24 | |
| 25 | |
| 26 | == Install Shibboleth Service Provider == |
| 27 | |
| 28 | 3. Install Shibboleth SP: |
| 29 | |
| 30 | {{{ |
| 31 | apt install libapache2-mod-shib ntp --no-install-recommends |
| 32 | }}} |