Skip to content

Commit

Permalink
add docs for the new flags of updateip
Browse files Browse the repository at this point in the history
  • Loading branch information
simod committed Aug 28, 2018
1 parent 2c57dd0 commit 050b71c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 5 additions & 3 deletions docs/tutorials/admin/install/custom_install.txt
Expand Up @@ -571,8 +571,10 @@ Once edited (if necessary) run the ``./install.sh`` file with the following comm
# call geonode binary django-admin.py create django super user
$ geonode createsuperuser

# create the IP address to your address
$ sudo geonode-updateip youraddress

# create the IP address to your public address
$ sudo geonode-updateip -p youraddress

# if geoserver is not on the same machine as geonode then also add a local geonode address
$ sudo geonode-updateip -p yourpublicaddress -l yourlocaladdress

GeoNode can now be accessed at http://localhost
9 changes: 5 additions & 4 deletions docs/tutorials/install_and_admin/quick_install.txt
Expand Up @@ -52,20 +52,21 @@ The steps to install geonode and all dependencies in Ubuntu 14.04 are as follows

geonode createsuperuser

4. Set the correct IP address (NB: the first command below looks up the IP address automatically)::
4. Set the correct IP public address (NB: the first command below looks up the IP address automatically)::

IP_ADDRESS=$(ip route get 8.8.8.8 | awk '{print $NF; exit}')
sudo geonode-updateip $IP_ADDRESS
sudo geonode-updateip -p $IP_ADDRESS

NB: The IP address must be set to enable access from another machine, e.g. the host machine if geonode is installed in a virtual machine.

NB: If geoserver is not on the same machine as geonode then also add the local address og your geonode by adding -l yourlocaladdress

5. Access geonode from your web browser, using the IP address from step 3 above. The neonode web applicaiton should be displayed and you can log in using the superuser details entered immediately above::

http://[IP_ADDRESS]

NB: With this installation method you use ``sudo geonode xxxx`` in place of any ``python manage.py xxx`` command referred to in documentation. For example, try::

sudo geonode help
sudo geonode help

For further information, read the Admin Docs at http://docs.geonode.org/en/master/#for-administrators.

Expand Down

0 comments on commit 050b71c

Please sign in to comment.