Project

General

Profile

Actions

CAS Server

Installed esup-cas-server-2.0.7-3 on tomcat server at 192.168.2.250

configure shibboleth for CAS:

http://www.switch.ch/aai/docs/shibboleth/SWITCH/1.3/idp/install-esupcas.html

CAS Apache2 module

Session storage

we use postgres to store CAS sessions. The postgres database named "apache_cas" on 192.168.1.17 is using the following table:

DROP TABLE cas_sessions;

CREATE TABLE cas_sessions (
    id          varchar(32) not null primary key,
    last_accessed   int8 not null,
    user_id         varchar(32) not null,
    pgtiou          varchar(64),
    pgt             varchar(64)
);

CREATE INDEX cas_sessions_id_index ON cas_sessions(id);
CREATE INDEX cas_sessions_pgtiou_index ON cas_sessions(pgtiou);

Updated by Andreas Müller almost 2 years ago · 6 revisions