Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you want access to it, please email grouper-dev@internet2.edu with what userid(s) you would like, and what you would like to use.  We can make sure it is available, and assign you a password.  We have the quickstart data set there, but you can get a stem to create what you like.  We might even be able to get you SSH credentials so you can run GSH...

Run v5 SSL and port forward

Code Block
docker run --name postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=pass -d -p 5432:5432 postgres:14


Code Block
docker run --name grouper -e GROUPERSYSTEM_QUICKSTART_PASS=pass -e GROUPER_MORPHSTRING_ENCRYPT_KEY=abc123     -e GROUPER_DATABASE_PASSWORD=pass -e GROUPER_DATABASE_USERNAME=postgres     -e GROUPER_DATABASE_URL=jdbc:postgresql://172.17.0.1:5432/postgres -e GROUPER_AUTO_DDL_UPTOVERSION='v5.*.*'     -d -p 8444:443 i2incommon/grouper:5.8.6 quickstart


Port forward mysql

Code Block
[mchyzer@login1 ~]$ ssh -L 3306:localhost:3306 i2midev6

...