Hi, I am working on Tomcat Server on port 8080. so i have to access the JSP page with URL http://localhost:8080/abc/xyz.jsp where abc is application name and xyz.jsp is the jsp page. Now I want to run this application on port 80 means want to run the application on apche server. so i have made changes in httpd.conf file of Apache server and and server.xml file in Tomcat server. So after changing these files i restarted both servers and then i can access the application on port 80 means URL: http://localhost:80/abc/xyz.jsp But the problem is i have removed those changes from Httpd.conf and server.xml and restarted the servers. but Still i can access the application on both port 80 and 8080. it should be accessible only on port 8080. Now i am understanding what is the problem. Please help me.