• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

About ssl certificate info on tomcat

 
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
i went thru tomcat how to docuement on enabling ssl on port 8443. i created the certificate and it generate a keystore in my home directory. everything worked fine except when i access my port https://localhost:8443 it displays the page and when i click on View certificate it gives some info as This CA root certificate is not trusted and it ask to install the certificate in Trusted Root Certification Authorities store.
Any idea why is it so and how to overcome this issue
thanks
Rashid
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Self-signed certificates (like the one you created) are not fully trusted by browsers because the issuing authority (you) is unknown. Either use a certificate issued by a known authority (Thawte, Verisign, etc.), or import your certificate into the browser. Under Firefox you can do this in the options under Advanced -> Security -> Web Sites -> Import.
 
Rashid Darvesh
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Ulf,
basically i am tryig to create a website which has sensitive information. So the conclusion is i have to get a certificate from a known certificate authority like verisign or some other issuing agency. Self made certificates will always be untrusted as in my case. Please let me know if what i understood is correct.
Thansk
Rashid
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Unless you can get your users to import your certificate into their browser, yes, that's correct.
 
Rashid Darvesh
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic