neo4j-contrib / spatial

Neo4j Spatial is a library of utilities for Neo4j that faciliates the enabling of spatial operations on data. In particular you can add spatial indexes to already located data, and perform spatial operations on the data like searching for data within specified regions or within a specified distance of a point of interest. In addition classes are provided to expose the data to geotools and thereby to geotools enabled applications like geoserver and uDig.
http://neo4j-contrib.github.io/spatial
Other
780 stars 192 forks source link

spatial.procedures #267

Closed estef1 closed 8 years ago

estef1 commented 8 years ago

I am new in neo4j. I have installed ver. 3.0.4 and then copied the neo4j-spatial-0.22-neo4j-3.0.4-server-plugin.jar into $NEO4J_HOME/plugins

I can see the plugin loaded when I run :GET /db/data/ext

However, it seems that the spatial procedures are not available.

When I run CALL spatial.procedures

I get this error message:

There is no procedure with the name spatial.procedures registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.

Any suggestions?

Thank you

Emmanuel.

craigtaverner commented 8 years ago

I've just re-tested it, and it worked for me. Can you check your logs and tell me if there are any errors or warnings there? (logs/neo4j.log and logs/debug.log). Also, are you running this query CALL spatial.procedures in the browser, or in some other way, and if another way, can you describe exactly how you run it in case there is something specific about that that could help track this down.

estef1 commented 8 years ago

Thank you for getting back to me! Here's the debug.log of the session (start neo4j; open the browser; System>Extensions; CALL spatial.procedures). I am running the query in the browser.


2016-09-02 14:44:19.799+0000 INFO [o.n.k.i.f.CommunityFacadeFactory] No locking implementation specified, defaulting to 'community' 2016-09-02 14:44:19.846+0000 INFO [o.n.k.AvailabilityGuard] Requirement makes database unavailable: Database available 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] --- INITIALIZED diagnostics START --- 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Neo4j Kernel properties: 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.connector.http.enabled=true 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.security.auth_enabled=true 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.connector.bolt.type=BOLT 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] unsupported.dbms.directories.neo4j_home=C:\Users\estef\Documents\GGE6405\2016\Neo4j 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.directories.import=import 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.connector.bolt.tls_level=OPTIONAL 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.shell.enabled=true 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.connector.http.type=HTTP 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] unsupported.dbms.directories.database=C:\Users\estef\Documents\GGE6405\2016\Neo4j 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.logs.http.enabled=false 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] unsupported.dbms.security.auth_store.location=data\dbms\auth 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] unsupported.dbms.edition=community 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] dbms.connector.bolt.enabled=true 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Diagnostics providers: 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] org.neo4j.kernel.configuration.Config 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] org.neo4j.kernel.info.DiagnosticsManager 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] SYSTEM_MEMORY 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] JAVA_MEMORY 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] OPERATING_SYSTEM 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] JAVA_VIRTUAL_MACHINE 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] CLASSPATH 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] LIBRARY_PATH 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] SYSTEM_PROPERTIES 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] NETWORK 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] System memory information: 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Total Physical memory: 7.92 GB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Free Physical memory: 2.16 GB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Committed virtual memory: 268.91 MB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Total swap space: 15.84 GB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Free swap space: 9.21 GB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] JVM memory information: 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Free memory: 85.03 MB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Total memory: 123.00 MB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Max memory: 1.76 GB 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space] 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen] 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Memory Pool: Code Cache (Non-heap memory): committed=4.50 MB, used=4.48 MB, max=240.00 MB, threshold=0.00 B 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Memory Pool: Metaspace (Non-heap memory): committed=18.00 MB, used=17.51 MB, max=-1.00 B, threshold=0.00 B 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Memory Pool: Compressed Class Space (Non-heap memory): committed=2.50 MB, used=2.39 MB, max=1.00 GB, threshold=0.00 B 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Memory Pool: PS Eden Space (Heap memory): committed=32.50 MB, used=21.84 MB, max=666.00 MB, threshold=? 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Memory Pool: PS Survivor Space (Heap memory): committed=5.00 MB, used=4.97 MB, max=5.00 MB, threshold=? 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Memory Pool: PS Old Gen (Heap memory): committed=85.50 MB, used=11.16 MB, max=1.32 GB, threshold=0.00 B 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Operating system information: 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Operating System: Windows 7; version: 6.1; arch: amd64; cpus: 4 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Process id: 9320@FR-GGE-29586 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Byte order: LITTLE_ENDIAN 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Local timezone: America/Halifax 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] JVM information: 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] VM Name: Java HotSpot(TM) 64-Bit Server VM 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] VM Vendor: Oracle Corporation 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] VM Version: 25.60-b23 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] JIT compiler: HotSpot 64-Bit Tiered Compilers 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] VM Arguments: [-Dexe4j.semaphoreName=Local\c:_program_files_neo4j_ce_3.0.4_bin_neo4j-ce.exe, -Dexe4j.isInstall4j=true, -Dexe4j.moduleName=C:\Program Files\Neo4j CE 3.0.4\bin\neo4j-ce.exe, -Dexe4j.tempDir=, -Dexe4j.unextractedPosition=0, -Djava.library.path=C:\ProgramData\Oracle\Java\javapath;C:\app\estef\product\11.2.0\dbhome_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WinSCP\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\node;C:\node;C:\Python34\Scripts;C:\Program Files (x86)\Skype\Phone\;C:\mapnik-v2.2.0\lib;C:\Program Files (x86)\GDAL;c:\program files\neo4j ce 3.0.4\jre\bin, -Dexe4j.consoleCodepage=cp0, -Dinstall4j.launcherId=24, -Dinstall4j.swt=false] 2016-09-02 14:44:19.862+0000 INFO [o.n.k.i.DiagnosticsManager] Java classpath: 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/cldrdata.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/dnsns.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\jce.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\resources.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\classes 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [classpath] C:\Program Files\Neo4j CE 3.0.4\bin\neo4j-desktop-3.0.4.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [classpath] C:\Program Files\Neo4j CE 3.0.4.install4j\i4jruntime.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\rt.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/jaccess.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\charsets.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/access-bridge-64.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/jfxrt.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/localedata.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/sunjce_provider.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/zipfs.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/sunpkcs11.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.0] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/bin/ 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.0] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/plugins/neo4j-spatial-0.22-neo4j-3.0.4-server-plugin.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\sunrsasign.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/sunmscapi.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\jsse.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.0] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/bin/neo4j-desktop-3.0.4.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/sunec.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [classpath] C:\Program Files\Neo4j CE 3.0.4\plugins\neo4j-spatial-0.22-neo4j-3.0.4-server-plugin.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.0] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/.install4j/i4jruntime.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [bootstrap] C:\Program Files\Neo4j CE 3.0.4\jre\lib\jfr.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] [loader.1] file:/C:/Program%20Files/Neo4j%20CE%203.0.4/jre/lib/ext/nashorn.jar 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] Library path: 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\ProgramData\Oracle\Java\javapath 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\app\estef\product\11.2.0\dbhome_1\BIN 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Windows\System32 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Windows 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Windows\System32\wbem 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Windows\System32\WindowsPowerShell\v1.0 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files\WinSCP 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\node 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\node 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Python34\Scripts 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files (x86)\Skype\Phone 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\mapnik-v2.2.0\lib 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files (x86)\GDAL 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] C:\Program Files\Neo4j CE 3.0.4\jre\bin 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] System.properties: 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.moduleName = C:\Program Files\Neo4j CE 3.0.4\bin\neo4j-ce.exe 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.semaphoreName = Local\c:_program_files_neo4j_ce_3.0.4_bin_neo4j-ce.exe 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.boot.library.path = c:\program files\neo4j ce 3.0.4\jre\bin 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.consoleCodepage = cp0 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] path.separator = ; 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] file.encoding.pkg = sun.io 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.country = US 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.script = 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.os.patch.level = Service Pack 1 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] install4j.exeDir = C:\Program Files\Neo4j CE 3.0.4\bin\ 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.dir = C:\Program Files\Neo4j CE 3.0.4\bin 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.variant = 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.tempDir = 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.jnu.encoding = Cp1252 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] unsupported.dbms.udc.source = desktop 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.awt.enableExtraMouseButtons = true 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] install4j.launcherId = 24 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.management.compiler = HotSpot 64-Bit Tiered Compilers 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.isInstall4j = true 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] install4j.swt = false 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.home = C:\Users\estef 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.timezone = America/Halifax 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] file.encoding = Cp1252 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.name = estef 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.java.command = C:\Program Files\Neo4j CE 3.0.4\bin\neo4j-ce.exe 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.arch.data.model = 64 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.launchName = C:\Program Files\Neo4j CE 3.0.4\bin\neo4j-ce.exe 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] user.language = en 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] awt.toolkit = sun.awt.windows.WToolkit 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] exe4j.unextractedPosition = 0 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] install4j.appDir = C:\Program Files\Neo4j CE 3.0.4\ 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] file.separator = \ 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.io.unicode.encoding = UnicodeLittle 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.cpu.endian = little 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.desktop = windows 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] sun.cpu.isalist = amd64 2016-09-02 14:44:19.877+0000 INFO [o.n.k.i.DiagnosticsManager] Network information: 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Software Loopback Interface 1: 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] address: 127.0.0.1 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] address: 0:0:0:0:0:0:0:1 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (SSTP): 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (L2TP): 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (PPTP): 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (PPPOE): 2016-09-02 14:44:19.893+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IPv6): 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (Network Monitor): 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IP): 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface RAS Async Adapter: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IKEv2): 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Microsoft Teredo Tunneling Adapter: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Intel(R) 82579LM Gigabit Network Connection: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] address: 131.202.94.149 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Juniper Networks Virtual Adapter Manager: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Juniper Networks Virtual Adapter: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Intel(R) 82579LM Gigabit Network Connection-Juniper Network Service-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Intel(R) 82579LM Gigabit Network Connection-Kaspersky Lab NDIS 6 Filter-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Intel(R) 82579LM Gigabit Network Connection-QoS Packet Scheduler-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface Intel(R) 82579LM Gigabit Network Connection-WFP LightWeight Filter-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (Network Monitor)-Kaspersky Lab NDIS 6 Filter-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (Network Monitor)-QoS Packet Scheduler-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IP)-Juniper Network Service-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IP)-Kaspersky Lab NDIS 6 Filter-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IP)-QoS Packet Scheduler-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IPv6)-Kaspersky Lab NDIS 6 Filter-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] Interface WAN Miniport (IPv6)-QoS Packet Scheduler-0000: 2016-09-02 14:44:19.909+0000 INFO [o.n.k.i.DiagnosticsManager] --- INITIALIZED diagnostics END --- 2016-09-02 14:44:20.300+0000 INFO [o.n.b.v.r.Sessions] Bolt Server extension loaded. 2016-09-02 14:44:20.300+0000 INFO [o.n.b.v.r.Sessions] Bolt enabled on localhost:7687. 2016-09-02 14:44:20.394+0000 INFO [o.n.k.i.s.f.RecordFormatSelector] Selected RecordFormat:StandardV3_0[v0.A.7] record format from store C:\Users\estef\Documents\GGE6405\2016\Neo4j 2016-09-02 14:44:20.425+0000 INFO [o.n.k.i.s.f.RecordFormatSelector] Format not configured. Selected format from the store: RecordFormat:StandardV3_0[v0.A.7] 2016-09-02 14:44:20.722+0000 INFO [o.n.k.i.DatabaseHealth] Database health set to OK 2016-09-02 14:44:22.042+0000 INFO [o.n.k.AvailabilityGuard] Fulfilling of requirement makes database available: Database available 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.f.CommunityFacadeFactory] Database is now ready 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for KernelDiagnostics:Versions START --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Graph Database: community single StoreId{creationTime=1472734786230, randomId=-6128936789164846765, storeVersion=15531981201765894, upgradeTime=1472734786230, upgradeId=1} 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Kernel version: 3.0.4 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for KernelDiagnostics:Versions END --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for NEO_STORE_VERSIONS START --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Store versions: 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Store versions: 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] ArrayPropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] NodeStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] PropertyIndexStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] ArrayPropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] PropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RelationshipStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RelationshipTypeStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] LabelTokenStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] SchemaStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RelationshipGroupStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] NeoStore v0.A.7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for NEO_STORE_VERSIONS END --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for NEO_STORE_ID_USAGE START --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Id usage: 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Id usage: 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] ArrayPropertyStore: used=1 high=0 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] NodeStore: used=1 high=170 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore: used=9 high=8 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] PropertyIndexStore: used=8 high=7 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore: used=1 high=24 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] ArrayPropertyStore: used=1 high=172 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] PropertyStore: used=1 high=382 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RelationshipStore: used=0 high=252 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore: used=7 high=6 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RelationshipTypeStore: used=6 high=5 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] StringPropertyStore: used=3 high=2 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] LabelTokenStore: used=2 high=1 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] SchemaStore: used=1 high=0 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RelationshipGroupStore: used=1 high=0 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] NeoStore: used=15 high=14 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for NEO_STORE_ID_USAGE END --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for NEO_STORE_RECORDS START --- 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] Neostore records: 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] TIME (Creation time): 1472734786230 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] RANDOM_NUMBER (Random number for store id): -6128936789164846765 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] LOG_VERSION (Current log version): 0 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] LAST_TRANSACTION_ID (Last committed transaction): 20 2016-09-02 14:44:22.042+0000 INFO [o.n.k.i.DiagnosticsManager] STORE_VERSION (Store format version): 15531981201765894 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] FIRST_GRAPH_PROPERTY (First property record containing graph properties): -1 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] LAST_CONSTRAINT_TRANSACTION (Last committed transaction containing constraint changes): 0 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] UPGRADE_TRANSACTION_ID (Transaction id most recent upgrade was performed at): 1 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] UPGRADE_TIME (Time of last upgrade): 1472734786230 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] LAST_TRANSACTION_CHECKSUM (Checksum of last committed transaction): -159112560994 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] UPGRADE_TRANSACTION_CHECKSUM (Checksum of transaction id the most recent upgrade was performed at): 0 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] LAST_CLOSED_TRANSACTION_LOG_VERSION (Log version where the last transaction commit entry has been written into): 0 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] LAST_CLOSED_TRANSACTION_LOG_BYTE_OFFSET (Byte offset in the log file where the last transaction commit entry has been written into): 154868 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] LAST_TRANSACTION_COMMIT_TIMESTAMP (Commit time timestamp for last committed transaction): 1472747388296 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] UPGRADE_TRANSACTION_COMMIT_TIMESTAMP (Commit timestamp of transaction the most recent upgrade was performed at): 0 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for NEO_STORE_RECORDS END --- 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for TRANSACTION_RANGE START --- 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] Transaction log: 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] Oldest transaction 2 found in log with version 0 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for TRANSACTION_RANGE END --- 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for KernelDiagnostics:StoreFiles START --- 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] Disk space on partition (Total / Free / Free %): 500064120832 / 45238091776 / 9 Storage files: (filename : modification date - size) 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] certificates: 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neo4j.cert: 2016-09-01T09:59:45-0300 - 642.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neo4j.key: 2016-09-01T09:59:45-0300 - 932.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:45-0300 - 1.54 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] data: 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] dbms: 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] auth: 2016-09-01T10:02:00-0300 - 113.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T10:02:00-0300 - 113.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:46-0300 - 113.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] index: 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:46-0300 - 0.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] logs: 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] debug.log: 2016-09-02T11:43:57-0300 - 28.64 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:45-0300 - 28.64 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore: 2016-09-01T13:29:55-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.counts.db.a: 2016-09-01T10:45:48-0300 - 96.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.counts.db.b: 2016-09-01T13:29:55-0300 - 128.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.labeltokenstore.db: 2016-09-01T10:27:17-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.labeltokenstore.db.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.labeltokenstore.db.names: 2016-09-01T10:27:17-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.labeltokenstore.db.names.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.nodestore.db: 2016-09-01T13:29:55-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.nodestore.db.id: 2016-09-02T11:44:20-0300 - 1.34 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.nodestore.db.labels: 2016-09-01T09:59:46-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.nodestore.db.labels.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db: 2016-09-01T13:29:55-0300 - 15.94 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.arrays: 2016-09-01T10:45:48-0300 - 24.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.arrays.id: 2016-09-02T11:44:20-0300 - 1.35 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.id: 2016-09-02T11:44:20-0300 - 2.99 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.index: 2016-09-01T10:27:17-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.index.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.index.keys: 2016-09-01T10:27:17-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.index.keys.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.strings: 2016-09-01T10:45:48-0300 - 8.00 kB 2016-09-02 14:44:22.057+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.propertystore.db.strings.id: 2016-09-02T11:44:20-0300 - 201.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshipgroupstore.db: 2016-09-01T09:59:46-0300 - 8.00 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshipgroupstore.db.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshipstore.db: 2016-09-01T10:45:48-0300 - 15.94 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshipstore.db.id: 2016-09-02T11:44:20-0300 - 1.99 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshiptypestore.db: 2016-09-01T10:27:17-0300 - 8.00 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshiptypestore.db.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshiptypestore.db.names: 2016-09-01T10:27:17-0300 - 8.00 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.relationshiptypestore.db.names.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.schemastore.db: 2016-09-01T09:59:46-0300 - 8.00 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.schemastore.db.id: 2016-09-02T11:44:20-0300 - 9.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] neostore.transaction.db.0: 2016-09-02T11:40:09-0300 - 151.54 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] schema: 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] label: 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] lucene: 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] labelStore: 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] 1: 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] segments_2: 2016-09-01T10:45:48-0300 - 71.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] write.lock: 2016-09-01T09:59:46-0300 - 0.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T10:45:48-0300 - 71.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] failure-message: 2016-09-01T09:59:46-0300 - 16.00 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:46-0300 - 16.07 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:46-0300 - 16.07 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:46-0300 - 16.07 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] - Total: 2016-09-01T09:59:46-0300 - 16.07 kB 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] store_lock: 2016-09-01T09:59:46-0300 - 0.00 B 2016-09-02 14:44:22.073+0000 INFO [o.n.k.i.DiagnosticsManager] --- STARTED diagnostics for KernelDiagnostics:StoreFiles END --- 2016-09-02 14:44:27.751+0000 INFO [o.n.k.i.DiagnosticsManager] --- SERVER STARTED START --- 2016-09-02 14:44:31.495+0000 INFO [o.n.k.i.DiagnosticsManager] --- SERVER STARTED END ---

craigtaverner commented 8 years ago

What do you get when you run CALL dbms.procedures?

Also, could you send the neo4j.log file?

estef1 commented 8 years ago

$CALL dbms.procedures

Rows Text Code name signature db.constraints db.constraints() :: (description :: STRING?) db.indexes db.indexes() :: (description :: STRING?, state :: STRING?, type :: STRING?) db.labels db.labels() :: (label :: STRING?) db.propertyKeys db.propertyKeys() :: (propertyKey :: STRING?) db.relationshipTypes db.relationshipTypes() :: (relationshipType :: STRING?) dbms.changePassword dbms.changePassword(password :: STRING?) :: () dbms.components dbms.components() :: (name :: STRING?, versions :: LIST? OF STRING?, edition :: STRING?) dbms.procedures dbms.procedures() :: (name :: STRING?, signature :: STRING?) dbms.queryJmx dbms.queryJmx(query :: STRING?) :: (name :: STRING?, description :: STRING?, attributes :: MAP?) Returned 9 rows in 368 ms.

estef1 commented 8 years ago

neo4j.log file:

2016-09-02 14:44:19.706+0000 INFO [o.n.s.d.LifecycleManagingDatabase] Starting... 2016-09-02 14:44:20.300+0000 INFO [o.n.b.v.r.Sessions] Bolt enabled on localhost:7687. 2016-09-02 14:44:27.751+0000 INFO [o.n.s.d.LifecycleManagingDatabase] Started. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] Loaded server plugin "SpatialPlugin" 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.addSimplePointLayer: add a new layer specialized at storing simple point location data 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.addNodesToLayer: adds many geometry nodes (about 10k-50k) to a layer, as long as the nodes contain the geometry information appropriate to this layer. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.addGeometryWKTToLayer: add a geometry specified in WKT format to a layer, encoding in the specified layers encoding schemea. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.findGeometriesWithinDistance: search a layer for geometries within a distance of a point. To achieve more complex CQL searches, pre-define the dynamic layer with addCQLDynamicLayer. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.getLayer: find an existing layer 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.updateGeometryFromWKT: update an existing geometry specified in WKT format. The layer must already contain the record. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.findGeometriesIntersectingBBox: search a layer for geometries intersecting a bounding box. To achieve more complex CQL searches, pre-define the dynamic layer with addCQLDynamicLayer. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.findClosestGeometries: search a layer for the closest geometries and return them. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.addEditableLayer: add a new layer specialized at storing generic geometry data in WKB 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.addNodeToLayer: add a geometry node to a layer, as long as the node contains the geometry information appropriate to this layer. 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.addCQLDynamicLayer: add a new dynamic layer exposing a filtered view of an existing layer 2016-09-02 14:44:29.218+0000 INFO [o.n.s.p.PluginManager] GraphDatabaseService.findGeometriesInBBox: search a layer for geometries in a bounding box. To achieve more complex CQL searches, pre-define the dynamic layer with addCQLDynamicLayer. Sep 02, 2016 11:44:29 AM com.sun.jersey.server.impl.application.WebApplicationImpl _initiate INFO: Initiating Jersey application, version 'Jersey: 1.19 02/11/2015 03:25 AM' Sep 02, 2016 11:44:30 AM com.sun.jersey.server.impl.application.WebApplicationImpl _initiate INFO: Initiating Jersey application, version 'Jersey: 1.19 02/11/2015 03:25 AM' Sep 02, 2016 11:44:31 AM com.sun.jersey.server.impl.application.WebApplicationImpl _initiate INFO: Initiating Jersey application, version 'Jersey: 1.19 02/11/2015 03:25 AM' 2016-09-02 14:44:31.495+0000 INFO [o.n.s.CommunityNeoServer] Remote interface available at http://localhost:7474/

craigtaverner commented 8 years ago

I'm not seeing anything strange in the debug or neo4j logs, and clearly the plugin was loaded, but the procedures are not there. Could you list the contents of the plugins folder just to see what else it there? Could you also try install the APOC plugins and see if they work? Get them from https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/tag/3.0.4.1

estef1 commented 8 years ago

thanks again. There is no plugin in the folder but the spatial one. I also added APOC. The problem persists. I installed neo4j and added the plugin in my laptop too and I get the same error message. Here is what I have done:

  1. download and install neo4j3.0.4
  2. download neo4j-spatial-0.22-neo4j-3.0.4-server-plugin.jar
  3. copy jar file into C:\Program Files\Neo4j CE 3.0.4\plugins
  4. start the server
  5. open the browser
  6. check extensions and make sure spatial plugin is installed
  7. CALL spatial.procedures

in step 7 I get the error message.

On Sat, Sep 3, 2016 at 8:17 AM, Craig Taverner notifications@github.com wrote:

I'm not seeing anything strange in the debug or neo4j logs, and clearly the plugin was loaded, but the procedures are not there. Could you list the contents of the plugins folder just to see what else it there? Could you also try install the APOC plugins and see if they work? Get them from https://github.com/neo4j-contrib/neo4j-apoc-procedures/ releases/tag/3.0.4.1

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/neo4j-contrib/spatial/issues/267#issuecomment-244540884, or mute the thread https://github.com/notifications/unsubscribe-auth/AU7_Ba7P7lX9H8wwUTIc7abyAD1HbX-eks5qmVdagaJpZM4Jztn3 .

iamdarknight commented 8 years ago

Any solution yet. Followed exactly the above procedure and i'm getting the same error. Im trying to build the plugin on my computer to see if it works.

craigtaverner commented 8 years ago

When you installed APOC, were you able to use the APOC procedures?

I'm trying to see if this is specific to spatial or to all publically installed procedures. The fact that the spatial plugin (REST extension) is successfully installed means that the JAR is found and loaded, and the same JAR contains the procedures, so there is something going wrong specifically with procedure loading. The main difference between your setup and my own tests is that you are using the windows desktop installer, and I'm just unzipping an archive onto macosx. I also regularly test on linux, but don't often have access to windows. Could you try install the ZIP version instead of the EXE version to see if that works?

iamdarknight commented 8 years ago

Tried APOC procedures and its the same thing. I guess you are right. I think something is going wrong during procedure loading. I read somewhere about putting the plugins in a database-specific folder and not in Neo4j CE 3.0.4/plugin folder. I need to use the spatial features asap!! :(

iamdarknight commented 8 years ago

SOLVED IT!!!

When you start NEO4J on windows it opens a pop up which allows you to configure your db instance. If you click options, the last option tells you which folder neo4j will look for plugins in. You can fine tune here where your plugins are located and Pronto!!!

THanx guys!!

estef1 commented 8 years ago

it worked for me too! thank you.

On Sun, Sep 4, 2016 at 8:42 AM, darknight notifications@github.com wrote:

SOLVED IT!!!

When you start NEO4J on windows it opens a pop up which allows you to configure your db instance. If you click options, the last option tells you which folder neo4j will look for plugins in. You can fine tune here where your plugins are located and Pronto!!!

THanx guys!!

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/neo4j-contrib/spatial/issues/267#issuecomment-244598614, or mute the thread https://github.com/notifications/unsubscribe-auth/AU7_BXN0HzCLrPrwG3Vc13mK87R9VguSks5qmq6XgaJpZM4Jztn3 .

craigtaverner commented 8 years ago

Super. I'll mark this issue as closed.

100beans commented 6 years ago

Hi,

I am having the same issue here but when I start Neo4j on Windows, no pop up appears. Spatial plugin is correctly installed and in the plugin folder in my Neo4j home directory.

When you say start Neo4j in windows I presume you mean executing '\bin\neo4j start' in neo4j-shell? Thanks