Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the default login credentials for Jasig CAS server?

Tags:

cas

jasig

I am new to SSO, I hoped to install Jasig CAS demo web app and be able to log in inside. Pure research and testing. I've disabled ssl using https://wiki.jasig.org/display/CASUM/Securing+Your+New+CAS+Server

However I either don't understand the meaning of the note, or I don't understand the architecture.

What is default username and password to login into cas server? What is the format the note implying? Should I be able to log in the app in the first place?

   http://hostname:8080/cas-server-webapp-VERSION/login (see note below) 

   You should see the CAS login page asking you for your username and
   password.  The default authentication plugin accepts NetID=password.
   Enter in an identical value for NetID and password and click LOGIN.
   If everything is set up correctly, you should see a page stating that
   you've successfully logged into CAS.  Congratulations!
like image 900
Aubergine Avatar asked Aug 19 '14 17:08

Aubergine


People also ask

What is CAS password?

CAS allows for strategies to track and storage recycled password. Recycled passwords are kept in storage for the user account and are examined upon password updates for validity. Once password history functionality is enabled, passwords can be tracked in history via a Groovy or an in-memory backend.

How do I start CAS server?

CAS server requires a MySQL server to be running on localhost at port 3306. The username and password should be root. Restart the CAS server and the Spring Boot app once again. Then use the new credentials for authentication.

How does CAS SSO work?

CAS validates the client's authenticity, usually by checking a username and password against a database (such as Kerberos, LDAP or Active Directory). If the authentication succeeds, CAS returns the client to the application, passing along a service ticket.

What is jasig CAS?

jasig.org. Jasig developed uPortal, a portal framework for higher education; Bedework, an enterprise calendar system; CAS, an authentication system and single sign-on service; and “2-3-98” to help raise awareness and adoption of open-source.


2 Answers

For 4.0.0 version:

  • User: casuser
  • Password: Mellon

Warning: this information is not updated in the INSTALL.txt of the 4.0.0 version of the CAS server.

For old versions: As the INSTALL.txt says, enter the same value for user and password, it doesn't matter which value.For example:

  • User: foo
  • Password: foo
like image 196
Xithias Avatar answered Sep 21 '22 05:09

Xithias


In fact, it depends on the version of the CAS server you installed. Better take a look at the deployerConfigContext.xml file.

like image 41
jleleu Avatar answered Sep 21 '22 05:09

jleleu