4

enter image description here

I follow the steps on the below link, and build it on my ubuntu cloud, it seems ok, but not working on my browser. https://mayan.readthedocs.io/en/v2.1.4/topics/installation.html

no matter on local: http://127.0.0.1:8000/ or on my cloud server: http://*..55.12:8000/

Can anyone help? I found less information on the internet about this EDMS.

Roberto Rosario
  • 1,818
  • 1
  • 17
  • 31
wong ian
  • 123
  • 9

1 Answers1

0

The address 127.0.0.1 (or localhost) is a loopback address and only accesible to the same host only.

From the installation instructions:

Note that the default IP address, 127.0.0.1, is not accessible from other machines on your network. To make your test server viewable to other machines on the network, use its own IP address (e.g. 192.168.2.1) or 0.0.0.0 or :: (with IPv6 enabled).

use:

./manage.py runserver 0.0.0.0:8000

Installation instructions

Roberto Rosario
  • 1,818
  • 1
  • 17
  • 31
  • Thank You! Sorry I didn't look very clear on the steps, I try this way, but it also cannot view by other network. Now I try its deploying way to build, it's ok now. – wong ian Nov 17 '16 at 08:58