회원가입| 아이디/비밀번호
 
Ȩ > ̵ > SSLġ̵

Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/innocert/www/guide/install_view.html on line 37

Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/innocert/www/guide/install_view.html on line 38

Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/innocert/www/guide/install_view.html on line 39

Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/innocert/www/guide/install_view.html on line 40

Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/innocert/www/guide/install_view.html on line 41
Tomcat 5.x / 6.x (Keytool)

  ߱ Tomcat մϴ.
 
  Keystore ü / ġ
# Ű ü (bundle.crt) ߰ մϴ #
[root@localhost ssl]# keytool -import -alias chain -keystore /usr/local/tomcat/ssl/TomcatKeyStore -trustcacerts -file bundle.crt

# Ű (www_innocert_co_kr.crt) ߰ մϴ #
[root@localhost ssl]# keytool -import -alias innocert -keystore /usr/local/tomcat/ssl/TomcatKeyStore -trustcacerts -file www_innocert_co_kr.crt

()  alias Keystore alias name ݵ ؾ մϴ.

 
  Ĺ ȯ (server.xml)
[root@localhost conf]# vi $TOMCAT_HOME/conf/server.xml

[Tomcat 6.X]
<Connector port="443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true" acceptCount="100" debug="0" scheme="https"
secure="true" SSLEnabled="true" clientAuth="false" sslProtocol="TLS"
keystoreFile="/usr/local/tomcat/ssl/TomcatKeyStore"
keystorePass="н">


[Tomcat 5.X]
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150"
scheme="https" secure="true" clientAuth="false" sslProtocol="TLS"
keystoreFile="/usr/local/tomcat/ssl/TomcatKeyStore"
keystorePass="н">


[Tomcat 4.X]
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="443" minProcessors="5" maxProcessors="75" enableLookups="true"
acceptCount="100" debug="0" scheme="https" secure="true"
useURIValidationHack="false" disableUploadTimeout="true">
<Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
keystoreFile="/usr/local/tomcat/ssl/TomcatKeyStore"
keystorePass="н"
clientAuth="false" protocol="TLS">
 
 
[root@localhost conf]# $TOMCAT_HOME/bin/shutdown.sh
[root@localhost conf]# $TOMCAT_HOME/bin/startup.sh