Project

General

Profile

Support #725

Install MITREid on FreeBSD

Added by Daniel Curtis over 8 years ago. Updated almost 7 years ago.

Status:
Suspended
Priority:
Normal
Assignee:
Category:
-
Target version:
Start date:
01/18/2016
Due date:
% Done:

70%

Estimated time:
1.00 h
Spent time:

Description

This is a guide on installing the open source OpenID Connnect provider, MITREid on FreeBSD 9.

Prepare the Environment

  • Make sure the system is up to date:
    pkg update && pkg upgrade
    
  • Install a few dependencies:
    pkg install git openjdk maven33
    
  • Create a mitreid user
    pw add user -n mitreid -m -s /bin/sh -c "MITREid" 
    

Install MITREid

  • Switch to the mitreid user:
    su - mitreid
    
  • Download MITREid from GitHub
    git clone https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git
    cd OpenID-Connect-Java-Spring-Server
    
  • Build mitreid:
    mvn package
    
  • Install the application to your local Maven repository by running this from the parent project directory:
    mvn clean install
    
  • Run the embedded Jetty server and deploy the server webapp:
    cd openid-connect-server-webapp
    mvn jetty:run
    

    NOTE: MITREid does not save data by default, so any new data will be lost when the server shuts down.

Resources

#1

Updated by Daniel Curtis over 8 years ago

  • Status changed from New to In Progress
  • % Done changed from 0 to 70
#2

Updated by Daniel Curtis almost 7 years ago

  • Status changed from In Progress to Suspended

Also available in: Atom PDF