2015-08-22 97 views
1

我試圖在我的ubuntu 14上登錄POI Data provider。文檔有點舊了,但是我已經安裝了一切都沒有問題。POI數據提供程序安裝

當我嘗試測試我的推動者: http://localhost/poi_dp/radial_search.php?lat=1&lon=1&category=test_poi 我得到空的網頁,這個錯誤在JavaScript控制檯:

Failed to load resource: the server responded with a status of 500 (Internal Server Error) 

我獲得這個時候我列出我的過程: PS斧| grep的 'Postgres的\ |蒙戈\ | Apache2的'

965 ?  Ssl 0:04 /usr/bin/mongod --config /etc/mongod.conf 
15480 ?  S  0:00 /usr/lib/postgresql/9.3/bin/postgres -D /var/lib/postgresql/9.3/main -c config_file=/etc/postgresql/9.3/main/postgresql.conf 
15482 ?  Ss  0:00 postgres: checkpointer process                        
15483 ?  Ss  0:00 postgres: writer process                          
15484 ?  Ss  0:00 postgres: wal writer process                         
15485 ?  Ss  0:00 postgres: autovacuum launcher process                      
15486 ?  Ss  0:00 postgres: stats collector process                       
16161 ?  Ss  0:00 /usr/sbin/apache2 -k start 
16164 ?  S  0:00 /usr/sbin/apache2 -k start 
16165 ?  S  0:00 /usr/sbin/apache2 -k start 
16166 ?  S  0:00 /usr/sbin/apache2 -k start 
16167 ?  S  0:00 /usr/sbin/apache2 -k start 
16168 ?  S  0:00 /usr/sbin/apache2 -k start 
16188 ?  S  0:00 /usr/sbin/apache2 -k start 
16419 pts/4 S+  0:00 grep --color=auto postgres\|mongo\|apache2 

WHE我驗證Postgres的SQL表

$ psql -U gisuser poidatabase 
poidatabase=> SELECT count(*) FROM fw_core; 

我讀4預期。

但磨片我嘗試驗證蒙戈DB:

$ mongo 
> use poi_db 
> db.collections 

我只得到「poi_db.collections」而不是: 的db.collections命令應該列出由安裝創建了五個POI數據組件集合:fw_contact ,fw_marker,fw_media,fw_relationships和fw_time。

是什麼問題?任何想法?謝謝。

回答

2

關於該db.collections返回任何嘗試的命令:

$ mongo 
> use poi_db 
> show collections 
相關問題