<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hi Julierme,<div class=""><br class=""></div><div class="">sorry I haven´t found yet the time to go through your question in detail but like to give you</div><div class="">a little help. In short. local_settings overwrites variables from settings.py</div><div class=""><br class=""></div><div class=""><b class="">Why ? Read more here:</b></div><div class=""><a href="http://techstream.org/Bits/Local-Settings-in-django" class="">http://techstream.org/Bits/Local-Settings-in-django</a></div><div class=""><br class=""></div><div class=""><b class="">Where? have a look at the code in settings.py:</b></div><div class=""><a href="https://github.com/GeoNode/geonode/blob/master/geonode/settings.py#L1372" class="">https://github.com/GeoNode/geonode/blob/master/geonode/settings.py#L1372</a></div><div class=""><br class=""></div><div class=""><b class="">How?</b></div><div class="">I´ve created a super simple example here:</div><div class=""><a href="https://repl.it/repls/NoxiousPitifulResource" class="">https://repl.it/repls/NoxiousPitifulResource</a></div><div class=""><br class=""></div><div class="">Cheers,</div><div class=""><br class=""></div><div class="">Toni</div><div class=""><br class=""></div><div class=""><br class=""><div class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><div class="">-----------------------------------------------</div><div class="">CSGIS</div><div class=""><br class=""></div><div class="">-----------------------------------------------</div><div class=""><div class="" style="orphans: 2; widows: 2;">Kolonnadenstraße 1</div><div class="" style="orphans: 2; widows: 2;">04109 Leipzig</div></div><div class="">-----------------------------------------------</div><div class="">Mobil<span class="Apple-tab-span" style="white-space: pre;">   </span>+49/ (0) 176 6680 3198</div><div class="">Tel <span class="Apple-tab-span" style="white-space: pre;">         </span>+49/ (0) 341 24 04 738</div><div class="">Fax <span class="Apple-tab-span" style="white-space: pre;">         </span>+49/ (0) 341 24 04 73</div><div class="">Web<span class="Apple-tab-span" style="white-space: pre;">                </span><a href="http://csgis.de" class="">http://csgis.de</a></div><div class="">-----------------------------------------------</div><div class=""><br class=""></div><div class="">Hinweis gemäß § 33 BDSG</div><div class="">Daten der Verfahrensbeteiligten werden gespeichert. Dieses Dokument ist ausschließlich für den </div><div class="">Adressaten bestimmt. Der Inhalt der E-Mail ist vertraulich. Falls Sie diese E-Mail versehentlich </div><div class="">erhalten haben, rufen Sie uns unter obiger Rufnummer umgehend an und löschen Sie diese Nachricht </div><div class="">von Ihrem Computer. Jegliche Art von Reproduktionen, Verbreitung, Vervielfältigung, Veränderung, </div><div class="">Verteilung und/oder Veröffentlichung dieser E-Mail ist verboten.</div></div></div></div></div></div></div></div>
</div>
<div><br class=""><blockquote type="cite" class=""><div class="">Am 29.05.2018 um 16:29 schrieb Julierme Pinheiro <<a href="mailto:juliermeopensourcedeveloper@gmail.com" class="">juliermeopensourcedeveloper@gmail.com</a>>:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class="">Dear Toni Schonbuchner,</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Though my questions in the previous e-mail do not help to fix the port 8000. And I am still having the issue related  to port 8000 while creating the thumbnails. Now, I am trying to find incoherent configuration between Settings.py and Local_settings.py. I know that settings.py inherits the configuration in local_settings.py, and that means, if I am not wrong, that whatever I set in local_settings.py will be copied to settings.py and vice versa, for instance, a variable that is defined in local_settings.py ca be used in settings.py and vice versa. Now, let's say, for instance, that I have MONITORING_ENABLE = True in the local_settings.py and MONITORING_ENABLE = False in the settings.py, which one will prevail, TRUE or FALSE value? or DEFAULT_MAP_CRS = "EPSG:900913" in local_settings.py and DEFAULT_MAP_CRS = "EPSG:3857" in settings.py, which one will prevail? 900913 or 3857? And my first shot is FALSE and 900913 for both questions because settings.py inherits local_settings.py.</div><div class=""><br class=""></div><div class="">I will play with PROJECT_NAME values in both files to see what happens and get a better understanding.<br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Also the variable OGC_SERVER has values defined through local_settings.py [1], but it does not have any value in OGC_SERVER being used in settings.py [2]. So, I guess the OGC_SERVER values and config in [1] are retrieved in [2] as settings.py inherits local_settings.py.<br class=""></div><div class=""><br class=""></div><div class=""><font size="4" class=""><span style="color:rgb(53,28,117)" class=""><b class=""><i class="">Different values found between settings.py and local_settings.py</i></b></span></font></div><div class=""><br class=""></div><div class=""><b class=""><font size="4" class="">settings.py  </font>                                                                                                                             <font size="4" class="">local_<b class="">settings.py</b></font><br class=""></b></div><div class=""><br class=""></div><div class="">PROJECT_NAME = 'my_geonode'<br class=""></div><div class=""><br class=""></div><div class="">INSTALLED_APPS += ('geonode', PROJECT_NAME,)                                                                      INSTALLED_APPS = INSTALLED_APPS + ('my_geonode',)<br class=""><br class=""></div><div class="">GROUP_MANDATORY_RESOURCES = True                                                                                  GROUP_MANDATORY_RESOURCES = False<br class=""></div><div class=""><br class=""></div><div class="">ACCOUNT_APPROVAL_REQUIRED = True                                                                                     ACCOUNT_APPROVAL_REQUIRED = False<br class=""></div><div class=""><br class=""></div><div class="">ACCOUNT_EMAIL_CONFIRMATION_EMAIL = True                                                                         ACCOUNT_EMAIL_CONFIRMATION_EMAIL = False<br class=""></div><div class=""><br class=""></div><div class="">ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = True                                                                  ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = False<br class=""></div><div class=""><br class=""></div><div class="">NOTIFICATION_ENABLED = True                                                                                                   NOTIFICATION_ENABLED = False<br class=""></div><div class=""><br class=""></div><div class="">MONITORING_ENABLED = False                                                                                                   MONITORING_ENABLED = True<br class=""></div><div class=""><br class=""></div><div class="">WSGI_APPLICATION = "{}.wsgi.application".format(PROJECT_NAME)                                              WSGI_APPLICATION = "my_geonode.wsgi.application"<br class=""></div><div class=""><br class=""></div><div class="">ROOT_URLCONF = os.getenv('ROOT_URLCONF', '{}.urls'.format(PROJECT_NAME))                         ROOT_URLCONF = 'my_geonode.urls'<br class=""></div><div class=""><br class=""></div><div class=""># Queue non-blocking notifications.                                                                                                  # Queue non-blocking notifications.                                                                                                 <br class="">PINAX_NOTIFICATIONS_QUEUE_ALL = False                                                                               NOTIFICATION_QUEUE_ALL = False<br class=""></div><div class=""><br class=""></div><div class="">GEOIP_PATH = os.path.join(os.path.dirname(__file__), '..', 'GeoLiteCity.dat')                                      GEOIP_PATH = "/usr/local/share/GeoIP"<br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Does these different values could be causing the issue related to the thumbnails? Which ones should I comment out? <br class=""></div><div class=""><br class=""></div><div class=""></div><div class=""><br class=""></div><div class="">[1] <a href="https://github.com/GeoNode/geonode-project/blob/2.8.0/project_name/local_settings.py.sample#L105" class="">https://github.com/GeoNode/geonode-project/blob/2.8.0/project_name/local_settings.py.sample#L105</a><br class=""></div>[2] <a href="https://github.com/GeoNode/geonode-project/blob/2.8.0/project_name/settings.py#L311" class="">https://github.com/GeoNode/geonode-project/blob/2.8.0/project_name/settings.py#L311</a><br class=""><div class=""><br class=""></div><div class="">Thank you very much for your time and help.</div><div class=""><br class=""></div><div class="">I appreciated it</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Julierme<br class=""></div><br class=""></div><div class="gmail_extra"><br class=""><div class="gmail_quote">2018-05-28 13:11 GMT-03:00 Julierme Pinheiro <span dir="ltr" class=""><<a href="mailto:juliermeopensourcedeveloper@gmail.com" target="_blank" class="">juliermeopensourcedeveloper@gmail.com</a>></span>:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class=""><div class="">Dear Toni Schonbuchner,</div><div class=""><br class=""></div><div class="">Thank you very 
much for your reply and highlights. While tweaking through local_settings.py [1] and settings.py [1][2], trying to find any port 8000 set to geoserver 
URL, I got some questions:</div><div class=""><br class=""></div><div class="">1 - regarding local_settings.py</div><div class=""><br class=""></div><div class="">1.1 OGC_SERVER --> LOG_FILE<br class=""></div><span class=""><div class=""><br class=""></div><div class="">OGC_SERVER : {</div><div class="">          ' default' : {</div><div class="">                          .</div><div class="">                          .</div><div class="">                          .</div><div class="">            'LOG_FILE' <span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-s1"></span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">:</span> <span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-s1">'</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-si">%s</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-s1">/geoserver/data/logs/geoser<wbr class="">ver.log'</span> <span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-o">%</span> <span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">os</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">path</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">abspath</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">(</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">os</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">path</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">join</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">(</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">P<wbr class="">ROJECT_ROOT</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">,</span> <span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">os</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-n">pardir</span><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">)),</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">                          }}</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div></span><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">PROJECT_ROOT is the only variable in the file, shouldn't it be changed to LOCAL_ROOT? PROJECT_ROOT was set as LOCAL_ROOT at the top of the file.<br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">1.2 LOCAL_GEOSERVER</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">Should I keep the condition (if 'geonode.geoserver' in INSTALLED_APPS:) before LOCAL_GEOSERVER configuration?</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">2 - regarding settings.py<br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">2.1 -  LOGGING --> loggers</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">The configuration in [1] differs from configuration in [2]. Config [2] in settings.py gets <pre class=""><span class="m_-3384509864669945447gmail-s2">"{{ project_name }}"</span><span class="m_-3384509864669945447gmail-p">:</span> <span class="m_-3384509864669945447gmail-p">{</span>
        <span class="m_-3384509864669945447gmail-s2">"handlers"</span><span class="m_-3384509864669945447gmail-p">:</span> <span class="m_-3384509864669945447gmail-p">[</span><span class="m_-3384509864669945447gmail-s2">"console"</span><span class="m_-3384509864669945447gmail-p">],</span> <span class="m_-3384509864669945447gmail-s2">"level"</span><span class="m_-3384509864669945447gmail-p">:</span> <span class="m_-3384509864669945447gmail-s2">"DEBUG"</span><span class="m_-3384509864669945447gmail-p">,</span> <span class="m_-3384509864669945447gmail-p">},<br class=""><br class=""><pre class=""><span class="m_-3384509864669945447gmail-s2">"my_geonode"</span><span class="m_-3384509864669945447gmail-p">:</span> <span class="m_-3384509864669945447gmail-p">{</span>
        <span class="m_-3384509864669945447gmail-s2">"handlers"</span><span class="m_-3384509864669945447gmail-p">:</span> <span class="m_-3384509864669945447gmail-p">[</span><span class="m_-3384509864669945447gmail-s2">"console"</span><span class="m_-3384509864669945447gmail-p">],</span> <span class="m_-3384509864669945447gmail-s2">"level"</span><span class="m_-3384509864669945447gmail-p">:</span> <span class="m_-3384509864669945447gmail-s2">"DEBUG"</span><span class="m_-3384509864669945447gmail-p">,</span> <span class="m_-3384509864669945447gmail-p">},</span></pre>project_name = my_geonde<br class=""></span></pre>but config [1] in local_settings does not. I guess this shouldn't be a problem because settings.py inherits local_settings.py. <br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">LOGGING = {<br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">     .</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">     .</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">     .<br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">     }, 'loggers': <br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">Lastly, my settings.py is different than settings.py in [3]. According to [4], my settings.py [5] is downloaded from here [6]. <br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">For instance, USE_GEOSERVER is set in Line 1249 [7], but it is not set in [5], at least the configuration is different. Furthermore, some libraries are imported in [7], but  they aren't in [5].</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">Is it settings.py in [5] out of date?</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">Yet, I am tweaking through geonode-updateip script and I will try to make some changes in order to have it working for GeNode installed from source. As soon as get it, I will share it here.<br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">I appreciated your time and help.</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">Kind regards and greetings to Germany.</span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"></span><br class=""></div><div class="">Julierme</div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[1] <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/setup_configure_httpd.html" target="_blank" class="">http://docs.geonode.org/en/mas<wbr class="">ter/tutorials/install_and_admi<wbr class="">n/geonode_install/setup_config<wbr class="">ure_httpd.html</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[2] <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/create_geonode_db.html" target="_blank" class="">http://docs.geonode.org/en/<wbr class="">master/tutorials/install_and_<wbr class="">admin/geonode_install/create_<wbr class="">geonode_db.html</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[3] <a href="https://github.com/GeoNode/geonode/blob/2.8.0/geonode/settings.py#L650" target="_blank" class="">https://github.com/GeoNode/<wbr class="">geonode/blob/2.8.0/geonode/<wbr class="">settings.py#L650</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[4] <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/install_geonode_application.html" target="_blank" class="">http://docs.geonode.org/en/<wbr class="">master/tutorials/install_and_<wbr class="">admin/geonode_install/install_<wbr class="">geonode_application.html</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[5] <a href="https://github.com/GeoNode/geonode-project/blob/2.8.0/project_name/settings.py" target="_blank" class="">https://github.com/GeoNode/<wbr class="">geonode-project/blob/2.8.0/<wbr class="">project_name/settings.py</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[6] <a href="http://github.com/Geonode/geonode-project/archive/2.8.0.zip" target="_blank" class="">http://github.com/Geonode/<wbr class="">geonode-project/archive/2.8.0.<wbr class="">zip</a></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p">[7] <a href="https://github.com/GeoNode/geonode/blob/2.8.0/geonode/settings.py#L1249" target="_blank" class="">https://github.com/GeoNode/<wbr class="">geonode/blob/2.8.0/geonode/<wbr class="">settings.py#L1249</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""><span class="m_-3384509864669945447gmail-m_-2467254964914735679gmail-p"></span></div><br class=""></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br class=""><div class="gmail_quote">2018-05-28 11:20 GMT-03:00 Julierme Pinheiro <span dir="ltr" class=""><<a href="mailto:juliermeopensourcedeveloper@gmail.com" target="_blank" class="">juliermeopensourcedeveloper@<wbr class="">gmail.com</a>></span>:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class=""><div class="">Dear Toni Schonbuchner,</div><div class=""><br class=""></div><div class="">Thank you very much for your reply. While tweaking through settings.py and local_settings.py [1], trying to find any port 8000 set to geoserver URL, I got some questions:</div><div class=""><br class=""></div><div class="">1 - regarding local_settings.py</div><div class=""><br class=""></div><div class="">OGC_SERVER : {</div><div class="">          ' default' : {</div><div class="">                          .</div><div class="">                          .</div><div class="">                          .</div><div class="">            'LOG_FILE' <span class="m_-3384509864669945447m_-2467254964914735679gmail-s1"></span><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">:</span> <span class="m_-3384509864669945447m_-2467254964914735679gmail-s1">'</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-si">%s</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-s1">/geoserver/data/logs/geoser<wbr class="">ver.log'</span> <span class="m_-3384509864669945447m_-2467254964914735679gmail-o">%</span> <span class="m_-3384509864669945447m_-2467254964914735679gmail-n">os</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">path</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">abspath</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">(</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">os</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">path</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">join</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">(</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">P<wbr class="">ROJECT_ROOT</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">,</span> <span class="m_-3384509864669945447m_-2467254964914735679gmail-n">os</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-o">.</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-n">pardir</span><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">)),</span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">                          }}</span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p">[1] <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/setup_configure_httpd.html" target="_blank" class="">http://docs.geonode.org/en/mas<wbr class="">ter/tutorials/install_and_admi<wbr class="">n/geonode_install/setup_config<wbr class="">ure_httpd.html</a><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"><br class=""></span></div><div class=""><span class="m_-3384509864669945447m_-2467254964914735679gmail-p"></span><br class=""></div><div class=""> <br class=""></div></div><div class="m_-3384509864669945447HOEnZb"><div class="m_-3384509864669945447h5"><div class="gmail_extra"><br class=""><div class="gmail_quote">2018-05-25 17:02 GMT-03:00 Toni Schönbuchner <span dir="ltr" class=""><<a href="mailto:toni.schoenbuchner@csgis.de" target="_blank" class="">toni.schoenbuchner@csgis.de</a>></span>:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space" class=""><div class="">Dear Julierme,</div><div class=""><br class=""></div><div class="">I think  using grep does not really help to get insights.</div><div class="">Why not look at the code? The geoserver URL is composed</div><div class="">in settings.py [1]. I think here you will find your 8000.</div><div class=""><br class=""></div><div class="">Next I think the best way to see what´s going on is to have</div><div class="">a look at the helpers.py [2]. Here you should find the code which</div><div class="">is responsible for creating thumbnails and here [3] the signal</div><div class="">which you see in stdout logging. If there is some time I will</div><div class="">do a dev installation and will test it as well.</div><div class=""><br class=""></div><div class="">Further you´ve asked if there is something like geonode-updateip </div><div class="">for an installation by source? Not that I know of but yes it would be helpful.</div><div class="">But it should not be to hard to write a little script which does the job.</div><div class="">Have a look what geonode-updateip actually does [4] it programatically changes</div><div class="">the parts which the documentation [5] explains regarding auth.</div><div class=""><br class=""></div><div class="">I hope this helps a bit.</div><div class="">Best greetings to Brasilia!</div><div class=""><br class=""></div><div class="">Toni</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">[1] <a href="https://github.com/GeoNode/geonode/blob/2.8.0/geonode/settings.py#L650" target="_blank" class="">https://github.com/GeoNode<wbr class="">/geonode/blob/2.8.0/geonode/se<wbr class="">ttings.py#L650</a></div><div class="">[2] <a href="https://github.com/GeoNode/geonode/blob/master/geonode/geoserver/helpers.py#L1730" target="_blank" class="">https://github.com/GeoNode<wbr class="">/geonode/blob/master/geonode/g<wbr class="">eoserver/helpers.py#L1730</a></div><div class="">[3] <a href="https://github.com/GeoNode/geonode/blob/df12893ced001973bd748f86d08fa6ae4c10dde9/geonode/geoserver/signals.py#L497" target="_blank" class="">https://github.com/GeoNode<wbr class="">/geonode/blob/df12893ced001973<wbr class="">bd748f86d08fa6ae4c10dde9/geono<wbr class="">de/geoserver/signals.py#L497</a></div><div class="">[4] <a href="https://github.com/GeoNode/geonode/blob/df12893ced001973bd748f86d08fa6ae4c10dde9/package/support/geonode.updateip#L126" target="_blank" class="">https://github.com/GeoNode<wbr class="">/geonode/blob/df12893ced001973<wbr class="">bd748f86d08fa6ae4c10dde9/packa<wbr class="">ge/support/geonode.updateip#<wbr class="">L126</a></div><div class="">[5] <a href="http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/install_geoserver_application.html#geonode-authentication-integration" target="_blank" class="">http://docs.geonode.org/en<wbr class="">/master/tutorials/install_and_<wbr class="">admin/geonode_install/install_<wbr class="">geoserver_application.html#geo<wbr class="">node-authentication-integratio<wbr class="">n</a></div><span class=""><div class=""><br class=""></div><div class="">
<div style="letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; word-wrap: break-word;" class=""><div style="letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; word-wrap: break-word;" class=""><div style="letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; word-wrap: break-word;" class=""><div style="letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; word-wrap: break-word;" class=""><div style="letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; word-wrap: break-word;" class=""><div class=""><div style="word-wrap:break-word" class=""><div class=""><div class="">------------------------------<wbr class="">-----------------</div><div class="">CSGIS</div><div class=""><br class=""></div><div class="">------------------------------<wbr class="">-----------------</div><div class=""><div class=""><a href="https://maps.google.com/?q=Kolonnadenstra%C3%9Fe+1+04109+Leipzig&entry=gmail&source=g" target="_blank" class="">Kolonnadenstraße 1</a></div><div class=""><a href="https://maps.google.com/?q=Kolonnadenstra%C3%9Fe+1+04109+Leipzig&entry=gmail&source=g" target="_blank" class="">04109 Leipzig</a></div></div><div class="">------------------------------<wbr class="">-----------------</div><div class="">Mobil<span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">      </span>+49/ (0) 176 6680 3198</div><div class="">Tel <span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">             </span>+49/ (0) 341 24 04 738</div><div class="">Fax <span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">             </span>+49/ (0) 341 24 04 73</div><div class="">Web<span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">            </span><a href="http://csgis.de/" target="_blank" class="">http://csgis.de</a></div><div class="">------------------------------<wbr class="">-----------------</div><div class=""><br class=""></div><div class="">Hinweis gemäß § 33 BDSG</div><div class="">Daten der Verfahrensbeteiligten werden gespeichert. Dieses Dokument ist ausschließlich für den </div><div class="">Adressaten bestimmt. Der Inhalt der E-Mail ist vertraulich. Falls Sie diese E-Mail versehentlich </div><div class="">erhalten haben, rufen Sie uns unter obiger Rufnummer umgehend an und löschen Sie diese Nachricht </div><div class="">von Ihrem Computer. Jegliche Art von Reproduktionen, Verbreitung, Vervielfältigung, Veränderung, </div><div class="">Verteilung und/oder Veröffentlichung dieser E-Mail ist verboten.</div></div></div></div></div></div></div></div></div>
</div>
<div class=""><br class=""></div></span><blockquote type="cite" class="">From: Julierme Pinheiro <<a href="mailto:juliermeopensourcedeveloper@gmail.com" target="_blank" class="">juliermeopensourcedeveloper@g<wbr class="">mail.com</a>><br class="">To: Toni Schönbuchner <<a href="mailto:toni.schoenbuchner@csgis.de" target="_blank" class="">toni.schoenbuchner@csgis.de</a>>, geonode-users<br class=""><span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">    </span><<a href="mailto:geonode-users@lists.osgeo.org" target="_blank" class="">geonode-users@lists.osgeo.org</a><wbr class="">>,  geonode-devel<br class=""><span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">   </span><<a href="mailto:geonode-devel@lists.osgeo.org" target="_blank" class="">geonode-devel@lists.osgeo.org</a><wbr class="">><br class="">Subject: Re: [GeoNode-devel] Geonode Thumbnails Error<br class="">Message-ID:<br class=""><span class="m_-3384509864669945447m_-2467254964914735679m_1353449244449409236Apple-tab-span" style="white-space:pre-wrap">      </span><<a href="mailto:CAKTKyJJmjL0QBMuZvw0DsBzeCu2yW5vKCj5dMjDN=cddheWJ+g@mail.gmail.com" target="_blank" class="">CAKTKyJJmjL0QBMuZvw0DsBzeCu2y<wbr class="">W5vKCj5dMjDN=cddheWJ+g@mail.gm<wbr class="">ail.com</a>><br class="">Content-Type: text/plain; charset="utf-8"<div class=""><div class="m_-3384509864669945447m_-2467254964914735679h5"><br class=""><br class="">Here are some more paths that port 8000 could be coming from:<br class=""><br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/pycsw/wsgi.py:#<br class=""><a href="http://localhost:8000/" target="_blank" class="">http://localhost:8000/</a><br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/DESCRIPTI<wbr class="">ON.rst:You<br class="">can now open the API in your browser at ``<a href="http://127.0.0.1:8000/" target="_blank" class="">http://127.0.0.1:8000/``</a>,<br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/DESCRIPTI<wbr class="">ON.rst:<br class="">$ curl -H 'Accept: application/json; indent=4' -u admin:password<br class=""><a href="http://127.0.0.1:8000/users/" target="_blank" class="">http://127.0.0.1:8000/users/</a><br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/DESCRIPTI<wbr class="">ON.rst:<br class="">"url": "<a href="http://127.0.0.1:8000/users/1/" target="_blank" class="">http://127.0.0.1:8000/users/1<wbr class="">/</a>",<br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/DESCRIPTI<wbr class="">ON.rst:<br class="">$ curl -X POST -d username=new -d <a href="mailto:email=new@example.com" target="_blank" class="">email=new@example.com</a> -d is_staff=false<br class="">-H 'Accept: application/json; indent=4' -u admin:password<br class=""><a href="http://127.0.0.1:8000/users/" target="_blank" class="">http://127.0.0.1:8000/users/</a><br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/DESCRIPTI<wbr class="">ON.rst:<br class="">"url": "<a href="http://127.0.0.1:8000/users/2/" target="_blank" class="">http://127.0.0.1:8000/users/2<wbr class="">/</a>",<br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/METADATA:<wbr class="">You<br class="">can now open the API in your browser at ``<a href="http://127.0.0.1:8000/" target="_blank" class="">http://127.0.0.1:8000/``</a>,<br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/METADATA:<br class="">$ curl -H 'Accept: application/json; indent=4' -u admin:password<br class=""><a href="http://127.0.0.1:8000/users/" target="_blank" class="">http://127.0.0.1:8000/users/</a><br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/METADATA:<br class="">"url": "<a href="http://127.0.0.1:8000/users/1/" target="_blank" class="">http://127.0.0.1:8000/users/1<wbr class="">/</a>",<br class="">geo/Envs/geonode/lib/python2.7<wbr class="">/site-packages/djangorestframe<wbr class="">work-3.8.2.dist-info/METADATA:<br class="">$ curl -X POST -d username=new -d <a href="mailto:email=new@example.com" target="_blank" class="">email=new@example.com</a> -d is_staff=false<br class="">-H 'Accept: application/json; indent=4' -u admin:password<br class=""><a href="http://127.0.0.1:8000/users/" target="_blank" class="">http://127.0.0.1:8000/users/</a><div class=""><br class=""></div></div></div><div class="">[...]</div></blockquote></div></blockquote></div><br class=""></div>
</div></div></blockquote></div><br class=""></div>
</div></div></blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></div></body></html>