• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

mod_jk.c (3404): missing uri map

 
Ranch Hand
Posts: 168
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I configured apache2.2.14 + JBoss2.4.8 + OpenSSL0.9.8k, if using http://localhost/
to access the apache server, it will forward to index.jsp which in JBoss.
However, when I type https://localhost:443 (HTTPS), it shows "The page cannot be found".

I checked that in jk.log, there is a error message as below:
mod_jk.c (3404): missing uri map for localhost:/jsp/index.jsp

Could anyone know how to resolve this problem? (I don't know why I use http://localhost can work but not https://localhost:443)

Thanks,
Jack
 
Jack Lau
Ranch Hand
Posts: 168
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I tried to add the "JKMountCopy On" under "VirtualHost", it is ok now!


<VirtualHost localhost:443>
JkMountCopy On
#.....
</VirtualHost>



Thanks,
Jack
 
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic