I recently installed tomcat via an installation script from the apache solr typo3 community and spent the last 3 days trying to figure out why it won't work until by chance I noticed that when I queried the process listening on the port via "lsof -i
", it was bound to the ipv6 protocol.
I have googled everywhere and most say that setting address to 0.0.0.0
in the tomcat connector resolves this issue, others say setting JAVA_OPTS="-Djava.net.preferIPv4Stack=true"
.
I have tried the former which doesn't work but the latter I am unsure of where to put it. One solution I read somewhere suggested to put it in setenv.sh
but I can't find this file in my tomcat installation. I would appreciate any help at the moment regarding this.
The tomcat version is 6.x and the OS is ubuntu 11.10.
Thanks
Many suggested updating
catalina.sh
startup script. Yes, that solution would work, butcatalina.sh
script is not meant to be customized/updated. All changes should go into the customization script instead, i.e.setenv.sh
.NOTE:
TOMCAT_HOME/bin/setenv.sh
doesn't exist by default, you need to create it. Check thecatalina.sh
script and you will see the startup script checks ifsetenv.sh
exists, and executes if it does.So, I suggest you create new
TOMCAT_HOME/bin/setenv.sh
script with a single line:Ok I finally solved it. I was directed to try this and Henk's solution. Neither of which seemed to work with the remote virtual server. I'm guessing the fact that because I'm on a shared kernel space so the provider prevents this. In any case I added:
JAVA_OPTS= $JAVA_OPTS -Djava.net.preferIPv4Stack=true -Djava.net.preferIPv4Addresses
to the catalina.sh startup script and that seemed to have fixed the issue of binding tomcat to ipv6.The correct syntax for modifying catalina.sh would be:
If you used this installer: "Apache Solr for TYPO3", you can change the address in the file
server.xml
. The default points to localhost, so look for 127.0.0.1 and change it into the IPv4-address you want. Don't forget to restart Tomcat6 for the changes to take effect.UPDATE, 20120521
See my comment below on how to disable IPv6 on Ubuntu 11.10.
I have successfully tested this on a Virtualbox-VM on my Mac. The address for the connector port 8080 has been changed from 127.0.0.1 to 0.0.0.0 in
server.xml
.Then disabling IPv6 makes the "tcp6" to go away, so it's binded to an IPv4-only address.
Before / with IPv6 enabled:
After / IPv6 disabled:
Along with the other answer using setenv.sh and CATALINA_OPTS...
Using Tomcat SSL with APR, the only way I could get Tomcat to bind to ipv4 was to add this to the connector config:
server.xml looks like this:
While probably not the preferred method, I have observed that disabling IPv6 at the kernel level will convince Tomcat to open an IPv4 bind.
Debian 8 navigate to using your favorite editor on /etc/default/grub ; look for the section GRUB_CMDLINE_LINUX_DEFAULT="quiet"** with then add ipv6.disable=1, as seen below
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 quiet"
Save and exit. In the same directory use your favorite editor on /etc/default/tomcat8 then look for the section with JAVA_OPTS= which will be commented out, add the following below that line. JAVA_OPTS=" $JAVA_OPTS -Djava.net.preferIPv4Stack=true -Djava.net.preferIPv4Addresses=true"
Save and exit
At the command prompt type update-grub , if you have sudo use with sudo, then restart tomcat8 service tomcat8 restart
You should be on IPv4 now.
Please in future posts include complete paths and file names. Thank You