Changes between Version 2 and Version 3 of idpiam2018
- Timestamp:
- Sep 3, 2018, 7:25:12 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
idpiam2018
v2 v3 24 24 25 25 3. Define the costants `JAVA_HOME` and `IDP_SRC` inside `/etc/environment`: 26 * 26 * 27 27 {{{ 28 28 update-alternatives --config java … … 126 126 8. Import the JST libraries to visualize the IdP `status` page: 127 127 * 128 128 {{{ 129 129 cd /opt/shibboleth-idp/edit-webapp/WEB-INF/lib 130 130 }}} 131 131 * 132 132 {{{ 133 133 wget https://build.shibboleth.net/nexus/service/local/repositories/thirdparty/content/javax/servlet/jstl/1.2/jstl-1.2.jar 134 134 }}} … … 140 140 9. Change the owner to enable '''tomcat8''' user to access on the following directories: 141 141 * 142 142 {{{ 143 143 chown -R tomcat8 /opt/shibboleth-idp/logs/ 144 144 }}} 145 145 * 146 146 {{{ 147 147 chown -R tomcat8 /opt/shibboleth-idp/metadata/ 148 148 }}} 149 149 * 150 150 {{{ 151 151 chown -R tomcat8 /opt/shibboleth-idp/credentials/ 152 152 }}} 153 153 * 154 154 {{{ 155 155 chown -R tomcat8 /opt/shibboleth-idp/conf/ 156 156 }}} … … 161 161 10. Disable default apache configuration: 162 162 * 163 163 {{{ 164 164 a2dissite 000-default 165 165 }}} … … 167 167 11. Create a new configuration file as `idp.conf` with the following: 168 168 * 169 169 {{{ 170 170 vim /etc/apache2/site-available/idp.conf 171 171 }}} … … 181 181 Enable Apache2 modules: 182 182 * 183 183 {{{ 184 184 a2enmod proxy_http ssl headers alias include negotiation 185 185 }}} 186 186 Restart the Apache service: 187 * 188 {{{ 187 {{{ 189 188 service apache2 restart 190 189 }}}