在Linux上为tomcat启用软链接

 
  
  
  
  
  1. 给www建立一个软连接 
  2. # pwd  
  3. /usr/local/tomcat6.0/webapps 
  4. # ln -s www test 
  5. # cat   www/META-INF/context.xml 
  6. <?xml version="1.0" encoding="UTF-8"?>   
  7. <Context path="/usr/local/tomcat6.0/webapps/www" allowLinking="true">   
  8. </Context>  
  9.  
  10. 重启tomcat,软链接test已经可以访问了 

 

你可能感兴趣的:(tomcat,linux,软链接)