Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] SSL Config while migrating from Jetty 8.1.0RC5 to 9.4.12RC2

Hi,

On Mon, Jan 27, 2020 at 10:43 AM Balaji Srinivasan <balaaagi@xxxxxxxxx> wrote:
>
> Am trying to upgrade from 8.1.0.RC5 to 9.4.12.RC2

Please don't use Release Candidate versions, just use the final
versions with dates such as 9.4.26.v20200117.

> My JVM Version is
>
> java version "1.8.0_181"
> Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
> Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)

Old JVM, please update this one too.

> Changed the version and modified the jetty-ssl.xml as below to corresponding package
>
> <New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory">
>     <Set name="KeyStore"><Property name="jetty.home" default="." />/etc/keystore</Set>

Update to be "KeyStorePath".

>     <Set name="KeyStorePassword">pASSWORD</Set>
>     <Set name="KeyManagerPassword">pASSWORD</Set>
>     <Set name="TrustStore"><Property name="jetty.home" default="." />/etc/keystore</Set>
>     <Set name="TrustStorePassword">pASSWORD</Set>

Remove the 2 lines related to the trust store, they are unnecessary.

-- 
Simone Bordet
----
http://cometd.org
http://webtide.com
Developer advice, training, services and support
from the Jetty & CometD experts.


Back to the top