Changes between Initial Version and Version 1 of Iam2023/Agenda/SP-Installation


Ignore:
Timestamp:
Mar 21, 2023, 9:28:00 AM (19 months ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Iam2023/Agenda/SP-Installation

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