Jump to content
We've recently updated our Privacy Statement, available here ×

How to setup SSL configuaration for jasperserver


kcsekhar25

Recommended Posts

 Hi all,

 

i want provide ssl configuaration for jasper.

i am generatig keystore using keytool and then generating a cerificate and changes settings in server.xml file to login to the jasperserver using https.

 

but still i am unable to access jasper using https protocol.

 

can anybody please help me.

i have attached keystore and .csr file.

thanks much

sekhar

Code:
in server.xml    <Connector port="8443" protocol="HTTP/1.1"	SSLEnabled="true"               maxThreads="150" scheme="https" secure="true"			   keystoreFile="C:\mykeystore\mykeystore.jks"			    keystorePass="changeit" clientAuth="false" sslProtocol="TLS" />   
Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Here is an example that I saw in one of our internal docs where a customer was working on getting this running:

 

For Tomcat, you can make the following change to server.xml (normally under catalina/home/conf subdirectory) :

<Connector port="8443" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="c:\keystore\keystore.keystore" />

save the change, restart the server, and you can login JS as
https://localhost:8443/jasperserver

 

This looks pretty similar to your setup. Do you find any particular errors in the <tomcat>/logs/catalina.log file?

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...