Changes between Version 3 and Version 4 of ESGF-Security
- Timestamp:
- Mar 5, 2013 2:44:24 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ESGF-Security
v3 v4 7 7 To install and configure SSL support on Tomcat 6, you need to follow these simple steps: 8 8 9 1.Create a keystore file to store the server's private key and self-signed certificate by executing the following:9 Create a keystore file to store the server's private key and self-signed certificate by executing the following: 10 10 {{{ 11 11 keytool -genkey -alias tomcat -keyalg RSA 12 12 password: changeit 13 }}} 14 13 }}} 15 14 This command will create a file in your user home directory named ".keystore". This keystore contains a certificate whose alias is ''tomcat'' 16 15 17 2.Download the ESGF Truststore which contains the trusted CA's and add your tomcat certificate:16 Download the ESGF Truststore which contains the trusted CA's and add your tomcat certificate: 18 17 19 You have two options: 20 1. Download the ESGF truststore from here https://rainbow.llnl.gov/dist/certs/esg-truststore.ts and add your tomcat certificate by yourself 21 2. Download the attachment:esg-truststore.ts which contains the tomcat pem. You can also download the attachment:.keystore 18 1. You can download the ESGF truststore from here https://rainbow.llnl.gov/dist/certs/esg-truststore.ts and add your tomcat certificate by yourself or download the attachment:esg-truststore.ts which contains the tomcat pem. You can also download the attachment:.keystore 22 19 23 3. Uncomment the ''SSL HTTP/1.1 Connector'' entry in ''$CATALINA_BASE/conf/server.xml'' and add the following:20 2. Uncomment the ''SSL HTTP/1.1 Connector'' entry in ''$CATALINA_HOME/conf/server.xml'' and add the following: 24 21 {{{ 25 22 <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" … … 28 25 }}} 29 26 30 4. Deploy esg-orp.war into tomcat 6 27 Deploy esg-orp.war into tomcat 6 28 29 1. Start tomcat server. Run '''$CATALINA_HOME/bin/startup.bat on windows''' or '''$CATALINA_HOME/bin/startup.sh''' on Linux 30 1. Move the attachment:esg-orp.war to '''$CATALINA_HOME/webapps'''. A new directory called 'esg-orp' will be created. 31 31 32 32