Case: Cannot login to ldap after done configuration in Tomcat6.
Solution steps:
1. Check tomcat log
# cd /var/log/tomcat6
# grep -R 443 * <- to grep all log related to 443 port
2. Check established port See if port 8443 established?
# netstat -na
3. Check LDAP log whether CAS listen/connected with LDAP server.
# tail -f /var/log/debug.log
4. How to check tomcat root folder ?
# nano /etc/init.d/tomcat6
From this file, you will find that root folder for tomcat in:
CATALINA_HOME = /usr/share/tomcat6
5. Check the SSL Cert current location. In my case, the cert located in /root/ folder.
The cert should move to tomcat root folder : /usr/share/tomcat6
6. Move the SSL cert folder from /root to /usr/share/tomcat6/
# cd /root/
# mv cert /usr/share/tomcat6/
7. Change ownership for the cert folder
# cd /usr/share/tomcat6/
# chown -R tomcat6:tomcat6 cert
8. Fix the cert path in server.xml configuration file
9. Check the deployerConfigContext.xml for 'authenticationHandlers' setting:
For new version of CAS Jasig, the basedn setting look like this:
**
value="cn=%u, ou=people, dc=staff, dc=company, dc=com, dc=my"
In our case, we missed the ou object in the property value.
10. Restart Tomcat Server
# /etc/init.d/tomcat6 restart
11. Test login again & good luck. Its working in my case!
Thank you to sifoo Saufi .... cayalah.. terbukti pemegang CCNA. Arigato...
.
Showing posts with label cas. Show all posts
Showing posts with label cas. Show all posts
Monday, July 16, 2012
Sunday, June 24, 2012
MOODLE: Authentication Issue- CAS Login
Case: After Setting CAS & LDAP in Moodle, Admin/ local user cannot login anymore to Moodle.
Solution Step:
---------------
1. Go to database server.
2. Check setting in table mdl_config_plugins. Compare with existing running moodle db.
# SELECT * FROM mdl_config_plugins WHERE PLUGIN LIKE '%auth/cas%'
3. Change manually, db setting for mdl_config.
# UPDATE mdl_config SET VALUE = 'manual' WHERE id='3';
4. Try open the site again and click Login.
The local user may login now. But CAS user cannot.
Login as moodle admin.
5. Go to CAS Setting Location:
Settings > Site administration > Plugins > Authentication > Manage authentication
** Compare the setting with running moodle site.
Found problem: cn dn setting in distinguish field.
CAS - Need to put cn dn setting in Context field.
LDAP - Put cn dn setting in distinguish field.
6. Fix cn dn setting in CAS and LDAP.
Settings > Site administration > Plugins > Authentication > Manage authentication
* Save setting for both.
7. Test open the site again and click Login.
Now the login page back to normal. User can choose either to login using CAS or other user.
* Thanks to Sis. Azlinda for the fast investigation & solution has been taken. Caiyok!!
.
Solution Step:
---------------
1. Go to database server.
2. Check setting in table mdl_config_plugins. Compare with existing running moodle db.
# SELECT * FROM mdl_config_plugins WHERE PLUGIN LIKE '%auth/cas%'
3. Change manually, db setting for mdl_config.
# UPDATE mdl_config SET VALUE = 'manual' WHERE id='3';
4. Try open the site again and click Login.
The local user may login now. But CAS user cannot.
Login as moodle admin.
5. Go to CAS Setting Location:
Settings > Site administration > Plugins > Authentication > Manage authentication
** Compare the setting with running moodle site.
Found problem: cn dn setting in distinguish field.
CAS - Need to put cn dn setting in Context field.
LDAP - Put cn dn setting in distinguish field.
6. Fix cn dn setting in CAS and LDAP.
Settings > Site administration > Plugins > Authentication > Manage authentication
* Save setting for both.
7. Test open the site again and click Login.
Now the login page back to normal. User can choose either to login using CAS or other user.
* Thanks to Sis. Azlinda for the fast investigation & solution has been taken. Caiyok!!
.
Monday, June 18, 2012
CAS- Install & Configured CAS Server in UBUNTU
Reference site: https://help.ubuntu.com/community/CentralAuthenticationService
1) Install TOMCAT on Ubuntu
# sudo apt-get update
# sudo apt-get install tomcat6
OR
# sudo aptitude install tomcat6
**Make sure you run this
# sudo apt-get install openjdk-6-jdk
Verify Java Installation
# java -version
2) Install Maven
# sudo apt-get install maven2
3) Optionally you can install maven-ant-helper in case you decide to use Ant to create deployment tasks:
# sudo apt-get install ant
# sudo apt-get install maven-ant-helper
4) Configuring CAS Server Build for Maven.
Get the latest CAS server archive from JASig: http://www.ja-sig.org/downloads/cas
-----------------
# wget http://www.ja-sig.org/downloads/cas/cas-server-3.3.5-release.tar.gz
# tar -xvzf cas-server-3.5.0-RC1-release.tar.gz
# cd cas-server-3.5.0-RC1
5) Edit pom.xml
# cd cas-server-wepapps/
# nano pom.xml
and add this line:
7) Run this command in cas-server-3.5.0-RC1/cas-server-webapp directory
# cd cas-server-3.5.0-RC1/cas-server-webapp
# mvn clean package
8) Copy all content from content from cas-server-3.5.0-RC1/cas-server-webapp/target/cas-server-3.5.0-RC1/
# cd cas-server-3.5.0-RC1/cas-server-webapp/target/cas-server-3.5.0-RC1/
# cp -Rp * /var/lib/tomcat6/webapps/ROOT/
9) Restart tomcat service
#service tomcat6 restart
OR
# /etc/init.d/tomcat6 restart
10)Setup SSL (self signed cert) with tomcat
# keytool -genkey -alias tomcat -keyalg RSA -keystore /etc/tomcat6/keystore
* You will be requested for data that will show on your user browser's certificate:
Enter keystore password: abc123
Re-enter new password: abc123
What is your first and last name: Jeremy Atkins
What is your organizational unit: OU
What is the name of your organization: NOYO
What is the name of your city or your locality: MyCity
What is the name of your state or province: Saudi Arabia
What is the two-letter country code for this unit: uk
Is the entered data correct: yes>
11) Edit server.xml again
12) Restart tomcat service
# service tomcat6 restart
OR
# /etc/init.d/tomcat6 restart
13) Make sure firewall allow port 8080, 8443, 8009, 389.
Test telnet the port within server sso and ldap through all related port.
# telnet serverip 8443
# telnet serverip 8080
# telnet serverip 8009
# telnet serverip 389
14) ** Test site >> http://serveraddress:8080
15) Configure deployerConfigContex.xml
Add this line at :
----------------------------------------------------------------------------
[bean class="org.jasig.cas.adaptors.ldap.FastBindLdapAuthenticationHandler"]
[property name="filter" value="cn=%u,ou=people,dc=student,dc=taibah,dc=edu,dc=sa" /]
[property name="contextSource" ref="contextSource" /] [/bean]
----------------------------------------------------------------------------
And this line after :
------------------------------------------------------------
[bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource"]
[property name="pooled" value="true"/]
[property name="urls"]
[list>
[value]ldap://serverldap_ip/[/value]
[/list]
[/property]
[property name="userDn" value="cn=admin,dc=it,dc=mycompany,dc=com"/]
[property name="password" value="asdfgh"/]
[property name="baseEnvironmentProperties"]
[map]
[entry]
[key]
[value]java.naming.security.authentication[/value]
[/key]
[value]simple[/value]
[/entry]
[/map]
[/property]
[/bean]
-----------------------------------------------------------
**Change [ ] to < and > & Save file.
16) Restart tomcat service
#service tomcat6 restart
17) Allow port 8443 > 443
# nano /etc/sysctl.conf add -> sysctl net.ipv4.ip_forward=1
Run iptable command:
# iptables -t nat -A PREROUTING -p tcp --dport 443 -j DNAT --to-destination serverapps_ip:8443
18) Test site >> http://serveraddress
19) Test Login
-----------------------------------------------------------------------------------
1) Install TOMCAT on Ubuntu
# sudo apt-get update
# sudo apt-get install tomcat6
OR
# sudo aptitude install tomcat6
**Make sure you run this
# sudo apt-get install openjdk-6-jdk
Verify Java Installation
# java -version
2) Install Maven
# sudo apt-get install maven2
3) Optionally you can install maven-ant-helper in case you decide to use Ant to create deployment tasks:
# sudo apt-get install ant
# sudo apt-get install maven-ant-helper
4) Configuring CAS Server Build for Maven.
Get the latest CAS server archive from JASig: http://www.ja-sig.org/downloads/cas
-----------------
# wget http://www.ja-sig.org/downloads/cas/cas-server-3.3.5-release.tar.gz
# tar -xvzf cas-server-3.5.0-RC1-release.tar.gz
# cd cas-server-3.5.0-RC1
5) Edit pom.xml
# cd cas-server-wepapps/
# nano pom.xml
and add this line:
[dependency]*Change [ ] to < and > & Save file.${project.groupId} cas-server-support-ldap ${project.version} [/dependency]
6) Edit server.xml # nano /var/lib/tomcat6/conf/server.xml
*Make sure you add or enable this[Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" /]
[Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" /]
**Change [ ] to < and > & Save file.7) Run this command in cas-server-3.5.0-RC1/cas-server-webapp directory
# cd cas-server-3.5.0-RC1/cas-server-webapp
# mvn clean package
8) Copy all content from content from cas-server-3.5.0-RC1/cas-server-webapp/target/cas-server-3.5.0-RC1/
# cd cas-server-3.5.0-RC1/cas-server-webapp/target/cas-server-3.5.0-RC1/
# cp -Rp * /var/lib/tomcat6/webapps/ROOT/
9) Restart tomcat service
#service tomcat6 restart
OR
# /etc/init.d/tomcat6 restart
10)Setup SSL (self signed cert) with tomcat
# keytool -genkey -alias tomcat -keyalg RSA -keystore /etc/tomcat6/keystore
* You will be requested for data that will show on your user browser's certificate:
Enter keystore password: abc123
Re-enter new password: abc123
What is your first and last name: Jeremy Atkins
What is your organizational unit: OU
What is the name of your organization: NOYO
What is the name of your city or your locality: MyCity
What is the name of your state or province: Saudi Arabia
What is the two-letter country code for this unit: uk
Is the entered data correct: yes>
11) Edit server.xml again
**Change [ ] to < and > & Save file.[Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="/etc/tomcat6/keystore" keystorePass="abc123" /]
12) Restart tomcat service
# service tomcat6 restart
OR
# /etc/init.d/tomcat6 restart
13) Make sure firewall allow port 8080, 8443, 8009, 389.
Test telnet the port within server sso and ldap through all related port.
# telnet serverip 8443
# telnet serverip 8080
# telnet serverip 8009
# telnet serverip 389
14) ** Test site >> http://serveraddress:8080
15) Configure deployerConfigContex.xml
Add this line at
----------------------------------------------------------------------------
[bean class="org.jasig.cas.adaptors.ldap.FastBindLdapAuthenticationHandler"]
[property name="filter" value="cn=%u,ou=people,dc=student,dc=taibah,dc=edu,dc=sa" /]
[property name="contextSource" ref="contextSource" /] [/bean]
----------------------------------------------------------------------------
And this line after :
------------------------------------------------------------
[bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource"]
[property name="pooled" value="true"/]
[property name="urls"]
[list>
[value]ldap://serverldap_ip/[/value]
[/list]
[/property]
[property name="userDn" value="cn=admin,dc=it,dc=mycompany,dc=com"/]
[property name="password" value="asdfgh"/]
[property name="baseEnvironmentProperties"]
[map]
[entry]
[key]
[value]java.naming.security.authentication[/value]
[/key]
[value]simple[/value]
[/entry]
[/map]
[/property]
[/bean]
-----------------------------------------------------------
**Change [ ] to < and > & Save file.
16) Restart tomcat service
#service tomcat6 restart
17) Allow port 8443 > 443
# nano /etc/sysctl.conf add -> sysctl net.ipv4.ip_forward=1
Run iptable command:
# iptables -t nat -A PREROUTING -p tcp --dport 443 -j DNAT --to-destination serverapps_ip:8443
18) Test site >> http://serveraddress
19) Test Login
-----------------------------------------------------------------------------------
Reference site:
http://rackerhacker.com/2009/11/16/automatically-loading-iptables-on-debianubuntu/http://stackoverflow.com/questions/2619798/setup-ssl-self-signed-cert-with-tomcathttps://help.ubuntu.com/community/IptablesHowTo
Thursday, December 16, 2010
SSO - Tomcat Server
Important!
** After do any changes in SSO code file(deployerConfigContext.xml)
we should restart Tomcat service in CAS Server...
.
** After do any changes in SSO code file(deployerConfigContext.xml)
we should restart Tomcat service in CAS Server...
.
Subscribe to:
Posts (Atom)