Sorry if this question makes no sense (no expert here), but I understand that tomcat listens to port 8080 and that url are usually addressed to 80. Is there a way to tell DNS that urls should point to 8080? Or how should I solve this issue?
Sorry if this question makes no sense (no expert here), but I understand that tomcat listens to port 8080 and that url are usually addressed to 80. Is there a way to tell DNS that urls should point to 8080? Or how should I solve this issue?
DNS doesn't know anything about ports. If you want to have tomcat listen on port 8080 then you have a couple of options. The first is to user the port number in the URL
If you don't like to look of that then you can use your webserver as a port proxy e.g in Apache you can use mod_proxy
This is done by
http://the.site.invaild:8080/
.It is not possible to give a port in the DNS. The DNS only maps names to IPs. But no ports.
I think it is best to make your tomcat to listen to port 80.You can do this if there is no other server listen to the port 80.For that you can edit server.xml
Change as follows,
Now you can try http://example.com/.This will correctly resolve to your tomcat instance.Because the default port of http is 80.
There might be a possibility in solving this via DNS: SRV-Records
With SRV-Records you basically tell DNS to answer a question like "where is the httpd from example.org"? And DNS answers with an IP-Adress AND a Portnumber.
Although I don't know if the clients requests this information or if the browser just does an A-Record lookup and requests the website from the given IP using port 80, this might be worth a try if you want to do it with DNS.
Otherwise: Let ether Tomcat listen to port 80 or redirect 8080 to Tomcat via Apache's mod_proxy.