2

I am migrating tomcat 7 to tomcat 9.0.33, below are the symbolic link access config for tomcat 7 but the link is not working on tomcat, can anyone pls suggest how to fix this

<?xml version='1.0' encoding='utf-8'?> <Context path="/" docBase="/usr/local/apache-tomcat-7.0.63/webapps/ROOT" allowLinking="true" deployXML="false">

Nilanka Manoj
  • 3,527
  • 4
  • 17
  • 48
Mugeesh Husain
  • 394
  • 4
  • 13

1 Answers1

1

in tomcat 9 & 8 need to add into tomcat/conf/context.xml

<Context> <Resources allowLinking="true" /> ....

got help from here

Mugeesh Husain
  • 394
  • 4
  • 13
  • This, and lots of other useful information is in the migration guide: http://tomcat.apache.org/migration-8.html http://tomcat.apache.org/migration-9.html – Mark Thomas Apr 03 '20 at 19:27