2016-09-25 25 views
0

データストアにデータセットをアップロードしようとしています。アップロードエラー:DataPusherに接続できませんでした。エラーが発生しました2.4.3

データセットを作成し、ckanインターフェイスの[Upload to datastore]メニューでデータセットをデータストアにアップロードしようとしました。

アップロードエラー:DataPusherに接続できませんでした。ウェブでないすべてのログ(CKANログ、datapusherログ)にエラーメッセージ

enter image description here

これは私のdevelopment.iniの

sqlalchemy.url = postgresql://ckan_default:[email protected]/ckan_default 
ckan.datastore.write_url = postgresql://ckan_default:[email protected]/datastore_default 
ckan.datastore.read_url = postgresql://datastore_default:[email protected]/datastore_default 
ckan.datastore.default_fts_lang = english 
ckan.datastore.default_fts_index_method = gist 
ckan.site_url = http://ckan.daniel.com 

ckan.site_id = default 
solr_url = http://127.0.0.1:8983/solr/ckan 
ckan.plugins = stats text_view image_view recline_view datastore datapusher 
ckan.views.default_views = image_view text_view recline_view 

ckan.preview.direct = png jpg gif 
ckan.preview.loadable = html htm rdf+xml owl+xml xml n3 n-triples turtle plain atom csv tsv rss txt json 

ckan.storage_path = /var/lib/ckan 
ckan.max_resource_size = 10 
ckan.max_image_size = 2 
ckan.datapusher.formats = csv xls xlsx tsv application/csv application/vnd.ms-excel application/vnd.openxmlformats-officedocument.spreadsheetml.sheet 
ckan.datapusher.url = http://ckan.daniel.com:8080/ 

とdatapusherが実行されている内容です。

# curl http://ckan.daniel.com:8800 
    { 
     "help": "\n  Get help at:\n  http://ckan-service-provider.readthedocs.org/." 
    } 

私はckan 2.4.3 + postgresql 9.1 + rhel 6.6 + solr 5.4を使用します。

データストア設定がありません。

ありがとうございました。

+0

ckan.datapusher.url = http://ckan.daniel.com:8080/ 

からproduction.iniの最後の行ckan.datapusher.url = http://ckan.daniel.com :8080/'、しかし明らかにあなたのdatapusherはポート8800で動いています。 – lfurini

+0

こんにちは、私はdatapusherのURLのポートを変更します。エラーメッセージは同じです。 – Daniel

+0

今それは大丈夫ですか?どのように成功する? – user1406691

答えて

1

変更するには、 `持っている.iniファイルで

ckan.datapusher.url = http://ckan.daniel.com:8800/ 
関連する問題