我已成功设置geonode和geoserver并使用以下安装说明访问该网站:
http://docs.geonode.org/en/master/tutorials/install_and_admin/geonode_install/index.html
然而,当我尝试使用命令python manage.py updatelayers导入图层ive creater geoserver时,我得到以下错误。我没有看到任何可能引起这种情况的明显因素,有什么可能的解决方案。
[Fri Jun 23 13:28:18.967752 2017] [mpm_event:notice] [pid 43112:tid 140088961779584] AH00491: caught SIGTERM, shutting down
[Fri Jun 23 08:28:19.085575 2017] [:error] [pid 43115:tid 140088961779584] Exception TypeError: "'NoneType' object is not callable" in <bound method LGEOS330.__del__ of <shapely.geos.LGEOS330 object at 0x7f68d5e77f58>> ignored
[Fri Jun 23 08:28:19.086615 2017] [:error] [pid 43117:tid 140088961779584] Exception TypeError: "'NoneType' object is not callable" in <bound method LGEOS330.__del__ of <shapely.geos.LGEOS330 object at 0x7f68d5df5050>> ignored
[Fri Jun 23 13:28:20.031722 2017] [mpm_event:notice] [pid 56385:tid 140091668883328] AH00489: Apache/2.4.7 (Ubuntu) mod_wsgi/3.4 Python/2.7.6 configured -- resuming normal operations
[Fri Jun 23 13:28:20.031814 2017] [core:notice] [pid 56385:tid 140091668883328] AH00094: Command line: '/usr/sbin/apache2'
[Fri Jun 23 13:50:13.559525 2017] [mpm_event:notice] [pid 56385:tid 140091668883328] AH00491: caught SIGTERM, shutting down
[Fri Jun 23 13:50:14.618523 2017] [mpm_event:notice] [pid 56895:tid 140407831709568] AH00489: Apache/2.4.7 (Ubuntu) mod_wsgi/3.4 Python/2.7.6 configured -- resuming normal operations
[Fri Jun 23 13:50:14.618589 2017] [core:notice] [pid 56895:tid 140407831709568] AH00094: Command line: '/usr/sbin/apache2'
我的apache日志是:
Dim reg1 As RegExp
Dim M1 As MatchCollection
Dim M As Match
Dim EAI As String
Set reg1 = New RegExp
With reg1
.Pattern = "Description\s*[:]+\s*(\w*)\s*"
.Global = False
End With
If reg1.Test(Item.Body) Then
Set M1 = reg1.Execute(Item.Body)
For Each M In M1
EAI = M.SubMatches(1)
Next
End If
答案 0 :(得分:1)
从跟踪看起来,与rest_url
的连接失败了。一旦你弄清楚rest_url是什么以及它应该是什么,你就可以解决你的问题。