Original Question/Issue:
Login using Single Sign-on(SSO) is getting blanc page after the upgrade to version 23.241
Environment:
Steps to Reproduce:
Upgrade to version 23.241 and higher
Error/Log Message:
Redirecting to the blanc page when using SSO login
Cause:
The alias for SSO metadata and the simplesaml settings was changed in the ulterior versions of 23.241
Resolution/Workaround:
A)- Update the Alias for SAML settings:
Navigate to the following directory
c:\xampp\apache\conf\extra
Open the following file for editing
httpd-filecloud.conf
Add the following line at the end of the file
Alias /simplesaml "/xampp/htdocs/thirdparty/simplesaml/public"
Ubuntu:
Open one of the the following files for editing:
/etc/apache2/sites-enabled/000-default.conf for HTTP (for port 80)
/etc/apache2/sites-enabled/default-ssl.conf for HTTPS (for port 443)
Add the following line within <VirtualHost *:80> for HTTP connection or <VirtualHost *.443> for HTTPS connection. You can place it under the line DocumentRoot /var/www/html.
Alias /simplesaml /var/www/html/thirdparty/simplesaml/public
To restart the apache webserver, run the following command:
service apache2 restart OR systemctl restart apache2
RHEL:
Add the following line within <VirtualHost *:80> for HTTP connection or <VirtualHost *.443> for HTTPS connection. You can place it under the line DocumentRoot /var/www/html.
Alias /simplesaml /var/www/html/thirdparty/simplesaml/public
B)- Use the simplesaml settings provided in the package and update it with the customized settings if exist:
Version 23.241.x of FileCloud has updated SimpleSAML to version 2.x. If your FileCloud build uses SSO, please take the following steps to replace your old configuration files with new ones; otherwise, SSO will not work correctly in your system.
Please login to post a comment.