Posts

Showing posts from September, 2021

TomCat Windows Login Problem

 I have installed TomCat server, added username: admin password: admin and every time I was trying to login I was back to login screen. All forums online are saying delete spaces etc. in tomcat-users.xml but the problem actually was in XML encoding. Just change this in tomcat-users.xml file: <?xml version='1.0' encoding='cp65001'?> To this: <?xml version='1.0' encoding='UTF-8'?>