Friday, March 27, 2015

Maven and Tomcat and Eclipse

Troubleshooting

  1. I/O exception (java.net.SocketException) caught when processing request: Connection reset
    1. [StackOverflow] Check the tomcat-users.xml configuration.
      It is important that your tomcat-users.xml has the correct roles setup. I ONLY had the role manager setup. Adding manager-script seems important and completely solved my problem.
      <role rolename="manager"/>
      <role rolename="manager-script"/>
      <role rolename="manager-gui"/>
      <user username="admin" password="admin" roles="manager,manager-gui,manager-script"/>
      

No comments:

Post a Comment