Unable to run admin console to setup new install on Debian

Running Debian Squeeze, installed OpenFire 3.6.4 from the .deb’.

When I try to access the admin console, I get a ‘page not found’ error. All OpenFire logs are empty, except for info.log which shows:

2010.01.16 16:16:08 Openfire 3.6.4 [Jan 16, 2010 4:16:08 PM]

2010.01.16 16:16:13 Admin console listening at http://127.0.0.1:9090

Also,

netstat -tulpen | grep 9090

tcp6 0 0 :::9090 :::* LISTEN 132 29016 5046/java

and

ps -ef | grep openfire

openfire 5046 1 2 16:16 ? 00:00:05 /usr/lib/jvm/java-6-sun/bin/java -server -DopenfireHome=/usr/share/openfire -Dopenfire.lib.dir=/usr/share/openfire/lib -classpath /usr/share/openfire/lib/startup.jar -jar /usr/share/openfire/lib/startup.jar

Ideas?

edit /etc/sysctl.d/bindv6only.conf

Replace

net.ipv6.bindv6only = 1

witch

net.ipv6.bindv6only = 0

reboot

Made the changes to the file and rebooted, no obvious change:

debian:~# netstat -tulpen | grep 9090

tcp6 0 0 :::9090 :::* LISTEN 132 6773 2183/java

debian:~# ps -ef | grep openfire openfire 2183 1 0 19:12 ? 00:00:06 /usr/lib/jvm/java-6-sun/bin/java -server -DopenfireHome=/usr/share/openfire -Dopenfire.lib.dir=/usr/share/openfire/lib -classpath /usr/share/openfire/lib/startup.jar -jar /usr/share/openfire/lib/startup.jar

root 2973 2880 0 19:24 pts/0 00:00:00 grep openfire

debian:~# grep ipv6 /etc/sysctl.d/bindv6only.conf

net.ipv6.bindv6only = 0

debian:~#

My mistake, it is now working correctly!

Thanks for your help.