On Mon, Apr 29, 2013 at 11:59 AM, SanjibKumarDeka <[email protected]> wrote: > Now i'm unable to connect dspace from the dspace url, neither from remotely > nor from local machine. It is unable to connect any dspace url > <202.141.81.17:8080/jspui>. > But it is working from the local machine <http://localhost:8080/jspui>
First, verify which interfaces your Tomcat is listening on. Run this as root: netstat -tulpn | grep :80 If it shows ":::80" or "0.0.0.0:80", it is listening on all IP addresses. If it's showing only "127.0.0.1:80", it's listening only on localhost. In Tomcat, this is configured using the "address" attribute of the "Connector" element as documented here: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html#Standard_Implementation If you added the address attribute, remove it, restart tomcat and check netstat again. A second reason may be that a firewall on your DSpace machine is blocking the connection from a different machine. Run "iptables -L" as root and post the output. Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette ------------------------------------------------------------------------------ Try New Relic Now & We'll Send You this Cool Shirt New Relic is the only SaaS-based application performance monitoring service that delivers powerful full stack analytics. Optimize and monitor your browser, app, & servers with just a few lines of code. Try New Relic and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

