Hi guys,
I recently installed Idempiere 4.1 and once I got it up and running, I found that I could only access it from the local host; wget -p
http://127.0.1.1:8080/webui produced an out put as expected but the server could not be browsed from another machine on the network.
I edited the file /opt/idempiere-server/jettyhome/etc/jetty-http.xml and changed the line
<Set name="host"><Property name="jetty.http.host" deprecated="jetty.host" default=
"core"/></Set>
to
<Set name="host"><Property name="jetty.http.host" deprecated="jetty.host" default=
"0.0.0.0"/></Set>
The 'core' entry is the name of the server in my case and will be different in your installation.
This solved the problem.
If this is the correct way to fix the issue, then I hope this helps others who may encounter the same problem. If there's a better way, please let me know!