2017-08-07 11 views
2

私はneo4jの初心者です。私はGephiで可視化できるように、.graphml形式で単純なグラフをエクスポートしようとしています。 APOC手順が正常にインストールされているように見えるにもかかわらず、CALL apoc.export.graphml.all("C:/path/to/folder/file.graphml",{})のようなコマンドは次のエラーを生成します。neo4j apocインポート/エクスポートが機能していません。 neo4j.confファイルを変更するには?

apoc.export.graphml.all is not available due to having restricted access rights, check configuration*.

私はコピーして、デフォルトのグラフデータベースフォルダのconfフォルダに貼り付けるneo4j.confファイルを(変更してみましたドキュメント内)にdbms.security.procedures.unrestricted=apocを追加し、neo4jをシャットダウンして再起動します。

私はWindows 10を使用しており、NEO4J 3.2.1 Community Editionバージョン(インストーラーバージョン)をインストールしました。どんな助けもありがたい。

答えて

2

I tried to modify the "neo4j.conf" file (which I copied and pasted into the conf folder of the default graph database folder in Documents) adding "dbms.security.procedures.unrestricted=apoc.*", shutting down and restarting neo4j with no success.

the documentationよると、Windowsインストール用neo4j.confファイルの正しいファイルの場所は%APPDATA%\Neo4j Community Edition\neo4j.confです。

上記のファイルを編集して、dbms.security.procedures.unrestricted=apoc.*"という行を入力してください。

関連する問題